""" Purpose: introduce assignment """ x = 10 # this is assignment. equal operator (=) is the assignment operator. y = x # the equal sign will give the variable name on the left the value of the thing on the right z = x + y # assignment: [variable name] = [value we want stored in variable] print( "x:", x ) # you can print out multiple things in one print(), just separate them with commas print( "y:", y ) # using quotes will literally print what is between the quotes "" print( "z:", z) # the print on line 7 first prints the string "x:" then prints the value of the variable x