Learnt Python
Wondered about the weight ratio of an African Swallow to a coconut
Now that my most recent college semester is over, I committed to a #100daysofcode challenge, I am using a 100 days of python program that while very basic to start, gradually increase in complexity. 

I already have a lot of the initial knowledge however, to keep my self accountable I plan on going through the course as if I had none. 

This first project is creating a band name generator that takes the input of the name of the city the user grew up with and combines it with a name of a pet in order to output a combined band name.


#Greeting for program
print("Hello, welcome to the band name generator")
#Ask user for the city that they grew up in.
city = input("What city did you grow up in? \n")
#Ask user for the name of a pet
pet_name = input("What is the name of your pet? \n")
#Combine the name of the city and pet to produce a band name
print("Your band name could be " + city + " " + pet + "\n")