What I Learned in Week 1 of Python — And Why I'm Already Hooked I've been saying "I'll learn to code" for two years. Last Monday, I actually did something about it. No bootcamp, no cohort — just Python, VS Code, and a stubbornly blank terminal staring back at me. Seven days later, I've built a calculator, a number guessing game with difficulty levels, a password validator, a multiplication table generator, and a full text-based adventure game with rooms, inventory, and a win condition. This is what Week 1 actually looked like. Day 1 — Hello, World (and Hello, print() ) Before writing a single line of Python, I spent way too long on setup — installing Python 3.12, VS Code, the Python extension, figuring out why the terminal wasn't running my file. The setup tax is real. But once I got there, I didn't just write one print() and move on. I explored every way Python can greet someone: #My first python code print ( " Hello, World " ) #Making a greeter!!…