Your first real Python program! 🎉
The print() function tells Python to display something on the screen. It's like a megaphone 📢 — whatever you put inside the parentheses, Python will shout it out!
💡 Key Rules:
print() not print'hello' or double "hello"print(42)print('I am', 10, 'years old')Fun fact: Almost every programmer in history started with "Hello, World!" — it's a tradition since the 1970s! Now it's your turn. 🚀
print('Hello, World!')
# Output: Hello, World!
Run your code
Hello World
I am learning Python!