My Python learning journey — from variables to building a game, one file at a time.
I came from a C and Java background and wanted to get comfortable with Python. This repo is my scratch pad from those early days — raw, real, and still growing.
| File | What it covers |
|---|---|
01_variable.py |
Variables, naming, assigning values |
02_type.py |
Data types — int, float, string, bool |
function.py |
Defining and calling functions |
class.py |
Classes, objects, basic OOP |
game.py |
A small game built using Python logic 🎮 |
song.py |
Fun practice — strings and print statements 🎵 |
practice.py |
Random experiments and trying things out |
- How Python handles variables and types differently from Java and C
- Writing clean, reusable functions
- Understanding OOP with classes and objects
- Just experimenting — breaking things and fixing them
Variables & Types ████████████ Done ✅
Functions ████████████ Done ✅
Classes & OOP ████████░░░░ Learning 🔄
Projects & Games █████░░░░░░░ In Progress 🚧
Aastha Nitin Nandekar