Simulated Coffee Machine with OOP!

Add GIF demo
This commit is contained in:
rzmk 2021-08-06 18:01:35 -04:00
parent 2cb3f14710
commit f462cc5ae0
9 changed files with 167 additions and 2 deletions

View file

@ -3,7 +3,7 @@ print("Welcome to the band name generator!")
#2. Ask the user for the city that they grew up in.
city_name = input("What's the name of the city you grew up in?\n")
#3. Ask the user for the name of a pet.
_name = input("What's your pet's name?\n")
pet_name = input("What's your pet's name?\n")
#4. Combine the name of their city and pet and show them their band name.
print("Your band name could be " + city_name + " " + pet_name + "!")
#5. Make sure the input cursor shows on a new line, see the example at: