🐍 30-Day Python Course Notes (Beginner to Intermediate)
🐍 30-Day Python Course Notes (Beginner to Intermediate) 📅 WEEK 1: Python Basics Day 1: Introduction to Python What is Python? Applications (Web, AI, Automation, Data Science) Install Python & IDE (VS Code / IDLE) First Program: print("Hello World") Day 2: Variables & Data Types Variables Data types: int, float, str, bool x = 10 name = "Rohith" Day 3: Input & Output name = input("Enter your name: ") print("Hello", name) Day 4: Operators Arithmetic (+, -, *, /) Comparison (>, <, ==) Logical (and, or, not) Day 5: Conditional Statements age = 18 if age >= 18: print("Adult") else: print("Minor") Day 6: Loops (for, while) for i in range(5): print(i) Day 7: Practice + Mini Project Number guessing game 📅 WEEK 2: Data Structures Day 8: Lists nums = [1, 2, 3] nums.append(4) Day 9: Tuples t = (1, 2, 3) Day 10: Sets s = {1, 2, 3} Day 11: Dictionaries student = {"name": "Rohith", ...