We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2613feb commit c5d3350Copy full SHA for c5d3350
Python Projects/Basic Games/Band Name Generator/BandnameGenerator.py
@@ -0,0 +1,11 @@
1
+#1. Create a greeting for your program.
2
+print("Welcome to the Band Name Generator")
3
+
4
+#2. Ask the user for the city that they grew up in.
5
+city=input("Enter the city in which you grow up: ")
6
7
+#3. Ask the user for the name of a pet.
8
+pet=input("Please Enter the name of your pet: ")
9
10
+#4. Combine the name of their city and pet and show them their band name.
11
+print("Your Band Name is: "+" "+pet+city)
0 commit comments