123456789 |
- #1. Create a greeting for your program.
- print("Hello, guys. It's a simple Band Name Generator Program")
- #2. Ask the user for the city that they grew up in.
- city = input("Whitch your father's city name? ")
- #3. Ask the user for the name of a pet.
- pats_name = input("What your pats's name? ")
- #4. Combine the name of their city and pet and show them their band name.
- print(city + " " + pats_name)
- #5. Make sure the input cursor shows on a new line, see the example at:
|