main.py 466 B

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