""" Purpose: quick assessment of assignment """ x = "Toto" y = "Dog" x = y y = x print( "x:", x ) print( "y:", y )