CREATE THE BRANDNAME GENERATOR USING PYTHON NOW WITH EASY STEPS
STEPS #1 Create a greeting for your Program #2 Ask the user for the city that they grew in #3 Ask the user for the name of the pet #4 Combine the name of their city and show them their band name. #5 Make sure that the input cursor shows on a new line PROGRAM Print (“Welcome to the band name generator.”) City = input (“Which city did you grow up in? \n”) Pet = input (“What is the name of a pet?\n”) Print(“Your band name could be “ + city + “ “ + pet) OUTPUT THE OUTOUT WILL BE DISPLAYED .

