A complete Python learning repository for beginners.
- Introduction
- Variables
- Data Types
- Strings
- Operators
- Conditions
- Loops
- Functions
- Lists
- Tuples
- Dictionaries
- Sets
- File Handling
- OOP
- Tkinter Projects
Variables are containers for storing data values.
name = "Ishtiaq"
age = 25
print(name)
print(age)Ishtiaq
25
Create variables for:
- Your name
- Your age
- Your country
Python has several built-in data types.
| Type | Example |
|---|---|
| String | "Hello" |
| Integer | 10 |
| Float | 10.5 |
| Boolean | True |
| List | [1,2,3] |
| Tuple | (1,2,3) |
| Dictionary | {"name":"John"} |
name = "John"
age = 30
height = 5.8
is_student = Truefor i in range(5):
print(i)count = 0
while count < 5:
print(count)
count += 1Features:
- Live time update
- 12-hour format
- AM/PM display
Features:
- Two-player mode
- Winner detection
- Restart button
Features:
- Addition
- Subtraction
- Multiplication
- Division
Ishtiaq Ahmed
GitHub: https://github.com/dev-ishtiaq


