Skip to content

Instantly share code, notes, and snippets.

View bjgaynor's full-sized avatar

Brent Gaynor bjgaynor

  • University of New Mexico Health System
  • Albuquerque, NM
View GitHub Profile
#1
home_address = "416 Tenth Street"
home_city = "Pittsburgh"
home_state = "Pennsylvania"
#2
first_name = "Anne"
#this give first_name, a category, an actual name to be used. It is much like putting something in a box.
first_name == "Anne"
#the double equals sign just checks to see if both sides of it are equal, responding with True or False.
#1
home_address = "416 Tenth Street"
home_city = "Pittsburgh"
home_state = "Pennsylvania"
#2
first_name = "Anne"
#this give first_name, a category, an actual name to be used. It is much like putting something in a box.
first_name == "Anne"
#the double equals sign just checks to see if both sides of it are equal, responding with True or False.