A collection of small Python scripts written during the early stages of learning Python. These files represent the very beginning of the journey — experimenting with variables, loops, conditionals, functions, and basic I/O.
| File | What it does |
|---|---|
Cal.py |
Simple loop-based calculator using +, -, *, /, ^ |
Cal001.py |
Alternative early calculator with basic operations |
avg.py |
Calculates the average of input numbers |
2 + avg.py |
Extended average calculator with 2 inputs |
num 10 + , avg.py |
Average of 10 numbers |
+ or - Number.py |
Determines if a number is positive or negative |
Large num.py |
Finds the largest number from input |
Large num + while.py |
Largest number using a while loop |
Large num , small num 2.0 + while.py |
Finds both max and min from a list |
IF IF.py |
Experiments with nested if statements |
Not Same.py |
Checks if two values are different |
Bill.py |
Simple billing/total calculation |
Houses.py |
Object-oriented house data example |
Subjects 3.py |
Lists and prints 3 subjects |
loop.py |
Basic loop exercise |
Write.py |
Writing to a text file |
Create File.py |
Creating files with Python |
Def.py |
Experimenting with function definitions |
Doc Strings.py |
Learning about Python docstrings |
Clock.py |
A simple clock using time module |
image resizer.py |
(see image-resizer) |
Python - GUI - Turtle - H.py |
Drawing the letter H with Python Turtle |
Python - GUI - Turtle - Heart.py |
Drawing a heart shape with Turtle graphics |
playsound_example.py |
Playing a sound file with playsound |
Strings & Numbers/ |
Experiments with string and number operations |
These scripts were written as exercises during the very early phase of learning Python — exploring syntax, built-in functions, control flow, and basic modules. They are preserved here as a marker of where the journey began, contrasting with the larger, more complex projects in this repository.
💡 Every expert was once a beginner. These files are proof of that.
Made with ❤️ as part of a learning journey