Introduction to Python Programming
----------------------------------
1. Python is an interpreted, high-level programming language.
2. Syntax Example:
print('Hello, World!')
3. Variables store data: x = 5
4. Control Flow: if, else, for, while loops
5. Functions are defined using def keyword.