Started learning Python with a simple Band Name Generator.

🚀 It’s never too late to start something new. I hesitated to post this because it’s only four lines of code — and honestly, it still feels like little more than writing print("Hello, World!") four times. I’ve done that more times than I can count, and I’ve even written a few small scripts (with a little help) to automate basic security tasks — like pinging hosts on a network and reporting if they’re up, among a few others. But this time is different. I wanted to make it formal — follow a real learning plan and study Python systematically. I want to build a solid foundation instead of just cobbling things together. This week, I finally stopped saying “someday” and started saying “today.” One of my first programs was a simple Band Name Generator: print("Welcome to the Band Name Generator.") city = input("Which city did you grow up in?\n") pet = input("What is the name of a pet?\n") print("Your band name could be " + city + " " + pet) Sure, it’s only a few lines of code — but those lines represent: Learning how user input works Assigning variables Understanding string concatenation Getting comfortable with program flow It’s small, but it’s a start. And the start is everything. It still feels a bit like using an Easy-Bake Oven instead of cooking from scratch — but what I do today, I’ll know tomorrow, and I’ll build from there. #Python #100DaysOfCode #CareerGrowth #LearningInPublic #Moretofollowsoon.

To view or add a comment, sign in

Explore content categories