1 2 3 4 5 6 7 8 9 10 11
# test assignments a = 1 print(a) a = b = 2 print(a, b) a = b = c = 3 print(a, b, c)