Brand Name Generator

print("Welcome to the random Band name generator")

city = input("What is the name of the city you grow up?\n")
pet = input("What is the name of your pet?\n")
band_name = "your band name can be: " + city + " " + pet

print(band_name)

Last updated