Variables store data for later use. In Python, you create a variable with =.
name = "Alice"
age = 25
height = 5.6
| Type | Example | Description |
| str | "Hello" | Text (string) |
| int | 42 | Whole number |
| float | 3.14 | Decimal number |
| bool | True | True or False |
1. Create a variable name with the value "Python"
year with the value 1991Run your code to see output