6 lines
193 B
Python
6 lines
193 B
Python
print("Welcome ot the Band Name Generator.")
|
|
city = input("What's the name of the city you grew up in?\n")
|
|
pet = input("What's your pet name?\n")
|
|
|
|
print(f'Your pet name could be {city} {pet}')
|