""" Purpose: quick assessment of assignment """ # we can put a lot of things in variables, including numbers and strings x = "Toto" # these are strings, you can tell because they're in quotes y = "Dog" # anything in quotes is a string x = y # we will use better, more descriptive names when we're doing more complex coding y = x print( "x:", x ) print( "y:", y )