Python Tutorial - Python Syntax
๐ Python Grammar
1. Indentation (Spaces)
Sabse Important! Python mein indentation bahut zaroori hai!
โ
Correct
if 5 > 2:
print("Sahi hai") # 4 spaces2. Comments
Comments Example
# Single line comment
print("Hello") # Inline comment
"""
Multi-line comment
Kai lines
"""Example
# Comment hai
print("Code hai")