Sunay-Hasanov / datasciencecoursera

For the Project
0 stars 0 forks source link

Band Name creator #1

Open Sunay-Hasanov opened 3 months ago

Sunay-Hasanov commented 3 months ago

This is just a simple project in which you can type your birth place and pet's name to create a music band name for yourself.

Sunay-Hasanov commented 3 months ago

Here is the code in Python:

1. Create a greeting for your program.

print('Herzlich wilcommen zum Band Generator')

2. Ask the user for the city that they grew up in.

city = input('In which city were you were born ? \n')

3. Ask the user for the name of a pet.

pet = input('What is the name of your pet? \n')

4. Combine the name of their city and pet and show them their band name.

print('your band name is:\n',city + ' ' + pet)