Python was the first programming language that made me feel like, “Yes, I can code.”
A few months back, I wrote my first ever Python script — and even though it was a small one, it completely changed the way I looked at programming.
I started with installing Python and opening a simple text editor. I didn’t know much; I just wanted to create something that works.
So I wrote this tiny script:
name = input("Enter your name: ")
print("Hello", name, "Welcome to Python!")
When I ran it and saw the output responding to my input, it instantly clicked for me. It felt powerful — like I created a small interactive program with just two lines of code.
What surprised me the most was how clean and readable Python is. No semicolons, no complex syntax… just simple logic.
After this, I explored lists, loops, dictionaries, and even built a small number-guessing game.
Writing this first script taught me three things:
Coding doesn’t need to be complicated.
Small projects help you learn faster.
Python is one of the best languages for building anything — from automation to AI.
This tiny script was the start of my journey, and today I’m learning machine learning and building real projects.
If you're new to programming, try writing a small Python script today. Trust me — that first “Hello” will motivate you more than any tutorial ever can.
Top comments (0)