Python Syntax & Variables
Python Syntax Rules
Python is famous for its clean and readable syntax.
Unlike other languages, Python does not use curly brackets {}.
Instead, it uses indentation (spaces).
✅ Correct Syntax Example
|
0 1 2 3 4 5 6 7 |
if 10 > 5: print("10 is greater than 5") |
