12 lines
89 B
Python
Raw Normal View History

2025-10-10 16:07:00 +08:00
# test assignments
a = 1
print(a)
a = b = 2
print(a, b)
a = b = c = 3
print(a, b, c)