""" Purpose: demonstrate assignment only effects the variable being assigned """ x = 10 y = x x = 20 print( "x:", x ) print( "y:", y )