Band Name

 avatar
unknown
python
2 years ago
543 B
4
Indexable
#1. Create a greeting for your program.
print ("Hello How Are You Doing Today")
#2. Ask the user for the city that they grew up in.
city = input ("Which City Did You Grow Up? ")
#3. Ask the user for the name of a pet.
pet = input ("What Is The Name Of Your Pet? ")
#4. Combine the name of their city and pet and show them their band name.
band_name = city +" " + pet
#5. Make sure the input cursor shows on a new line:
print("Your Band Name Is: ")
print (band_name)
# Solution: https://replit.com/@appbrewery/band-name-generator-end
Editor is loading...