Lesson 2 of 12
Hello, World! 👋
What You'll Learn
- Write and run your first Python program
- Understand what
print()does and how to use it - Read Python error messages and fix common mistakes
Quick Check
1. Which of these correctly prints "Hello" in Python 3?
2. What type of error occurs when you forget a closing parenthesis?
3. What does print("Score:", 95) display?
4. What does \n do inside a print() string?