AAnnetinhtml-portfolio.hashnode.dev·6h ago · 7 min readFrom print("Hello World") to Building Logic — My Python Learning Journey 🐍When I first started learning Python, I thought coding was just writing lines and getting output. But slowly I realized it is actually about thinking logically and teaching the computer how to think. 00
AAnnetinhtml-portfolio.hashnode.dev·5h ago · 6 min readMy Codeforces Problem Solving Journey — Beginner Level 🧩As part of improving my problem-solving skills, I started solving beginner problems on Codeforces. These problems helped me strengthen my basics in Python and improve my logical thinking. Here are the00
ACAnju Chauhaninbeyondthebug.hashnode.dev·1d ago · 4 min read10 Python List Tricks Every Developer Should KnowPython lists are one of the most commonly used data structures. Whether you're building web applications, solving coding challenges, or preparing for interviews, knowing how to use lists effectively c10
ACAnju Chauhaninbeyondthebug.hashnode.dev·2d ago · 2 min read7 Python Tips Every Beginner Should KnowWhen I started learning Python, I often focused on making my code work. Over time, I realized that writing clean, readable, and efficient code is just as important. Whether you're preparing for interv10
AAAmeer Abdullahinameerab-blog.hashnode.dev·3d ago · 3 min readPython Exception Handling: Tracing try/except/else/finally BlocksMost developers use try/except regularly. Fewer can predict the exact execution order when you combine try, except, else, and finally in a single block, especially when return statements or nested exc00
PRPrecious Robertinsimpleneurons.hashnode.dev·4d ago · 6 min readFavorite SingerMeet Bob (and his giant box of songs) 🎵 Forget code for a second. Let me tell you a story. Imagine Bob has a big box of songs. Every single song has a sticker on it, and on that sticker is a number —00
PRPrecious Robertinsimpleneurons.hashnode.dev·6d ago · 1 min readMy DSA Practice Journey on HackerEarthHey guys 👋 I'm starting a challenge where I solve problems from HackerEarth, one by one. Here's something I've noticed: a lot of people learn Python (or any language), finish the tutorials… and still00
AKAman Kumar Dasinmy-py-learn-journey.hashnode.dev·Jun 22 · 7 min readThe Logic of Python, Explained Like You've Never Coded BeforeWhen you first start coding, your programs are like a train on a single, straight track. You give the computer a list of instructions, and it mindlessly executes them from top to bottom. It calculates00
AKAman Kumar Dasinmy-py-learn-journey.hashnode.dev·Jun 22 · 6 min readThe Python Object Model, Explained Like You've Never Coded BeforeWhen you first start coding, you treat Python like a calculator. You type x = 5, then y = x + 2, and you get 7. It feels like you are just pushing raw numbers around. But eventually, things start acti00
AKAman Kumar Dasinmy-py-learn-journey.hashnode.dev·Jun 22 · 5 min readCopying Objects, Explained Like You've Never Coded BeforeEvery time a beginner tries to make a "backup" of a list in Python, a predictable disaster happens. They modify the backup, and to their horror, the original list changes too. They feel like the compu00