Day 1 – IDE, Printing and Variables

Day 1 we covered the following introductory topics:

  • Day 1 Goals
  • Setting up PyCharm
  • Printing to the Console
  • String Manipulation
  • Debugging
  • Python Variables
    • Variable Naming
  • Project – Band Name Generator

Here is my finished project code

print("Welcome to the band name generator")                   
city = input("What city did you grow up in \n")               
pet = input("What is the name of your pet \n")                
print("your band name could be " + city + " " + pet )