Python Tutorial - Python Syntax

Unlock Premium Features: AI explanations (Hinglish), Indian voice & Videos
Sign Up Free

๐Ÿ“ Python Grammar

1. Indentation (Spaces)

Sabse Important! Python mein indentation bahut zaroori hai!
โœ… Correct
if 5 > 2:
    print("Sahi hai")  # 4 spaces

2. Comments

Comments Example
# Single line comment
print("Hello")  # Inline comment

"""
Multi-line comment
Kai lines
"""

๐Ÿค– AI Tutor Unlock Karo!

Apni language mein coding seekho - Hindi, Marathi, Gujarati aur 10+ Indian languages mein!

  • Hinglish mein explanations
  • Real-life examples
  • Beginner-friendly
Free Signup Karo

Example

# Comment hai
print("Code hai")