Python Basics
1. What is Python?
Python is a simple and easy programming language used for web, data, automation, and more.
2. Variables
Variables store data.
Example: x = 10
3. Data Types
int, float, str, bool
4. Operators
+, -, *, /, %, ==, !=
5. Conditional Statements
if, elif, else
6. Loops
for loop, while loop
7. Functions
Reusable block of code using def keyword
8. Lists
Collection of items: [1, 2, 3]
9. Dictionaries
Key-value pairs: {'name':'Vikas'}
10. Conclusion
Python is beginner-friendly and powerful.