This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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. |