Introduction to Python Programming
Class Notes - Prepared by [Your Name], October 12, 2025
1. **What is Python?**
- Python is a high-level, interpreted programming language known for its simplicity and
readability. Created by Guido van Rossum in 1991.
2. **Key Features:**
- Easy syntax, vast libraries (e.g., NumPy for data science), cross-platform support.
3. **Basic Syntax Example:**
- print('Hello, World!')
- # Variables: x = 5
- # Loop: for i in range(5): print(i)
4. **Applications:**
- Web development (Django), Data Analysis (Pandas), AI (TensorFlow).
5. **Conclusion:**
- Python is ideal for beginners and professionals. Practice with simple projects!