Part of my 100 Days of Python Projects challenge.
This project recreates the classic Python Band Name Generator using a terminal-style web interface.
The Band Name Generator asks the user for the name of the city they grew up in and their pet’s name, then combines them to generate a fun band name.
- Understanding basic program flow (input → process → output)
- Translating beginner Python logic into JavaScript
- Working with string concatenation
- Handling user input dynamically in a terminal-style UI
- User enters the name of the city they grew up in
- User enters their pet’s name
- The app combines both inputs and displays a generated band name
- Capturing user input step by step
- Concatenating strings to form the band name
- Displaying output dynamically in a terminal-style interface
Welcome to the Band Name Generator.
What's the name of the city you grew up in? Boston
What's your pet's name? Buddy
Your band name could be: Boston Buddy
- Open the project using the Live Demo link, or
- Clone the repository and open
index.htmlin a browser - Click Run and follow the on-screen prompts
https://amit7git.github.io/Python--Day-1-Band_Name_Generator/