print("Hello World")
That’s it.
Yes — Python is that simple.
Now let’s store a variable:
Python
Copy code
name = "Alex"
age = 20
And print it:
Python
print(name, age)
Boom 💥
You just used variables in Python
And that’s the power of Python — simple, readable, and powerful.
If you want to learn AI, automation, or data science, Python is the perfect place to start.