🐍 Introduction to Python
Python is a high-level, interpreted programming language.
Known for its readability and simple syntax.
Used in web development, data science, AI, automation, and more.
---
🧱 Basic Syntax
Python uses indentation instead of braces.
Statements end with a newline, not semicolons.
print("Hello, World!")
---
🔢 Data Types
int: Integer (e.g., 5)
float: Decimal (e.g., 5.7)
str: String (e.g., "hello")
bool: Boolean (True or False)
list: Ordered, changeable (e.g., [1, 2, 3])