Python Introduction
PythonPython is the world's most popular programming language. It's used by Google, Netflix, NASA, and Instagram.
Why Python?
- Reads like English — easiest to learn
- Used in: Web dev, Data Science, AI/ML, Automation
- Huge community and free resources
- Most asked language in Indian IT interviews
You can start coding Python right now at replit.com — no installation needed!
Example — PYTHON
# Your first Python program
print("Hello, World!")
# Variables
name = "Rahul"
age = 20
# String formatting
print(f"My name is {name}")
print(f"I am {age} years old")
# Simple math
price = 500
discount = price * 0.10
print(f"Discount: ₹{discount}")
Result
Hello, World!
My name is Rahul
I am 20 years old
Discount: ₹50.0
My name is Rahul
I am 20 years old
Discount: ₹50.0