""" Purpose: demonstrate multi-assignment """ # Start of the new millenium month, day, year = "January", 1, 2000 # Letters in love c1, c2, c3, c4 = "love" # Results print( month, day, year ) print() print( c1, c2, c3, c4 )