mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-19 19:10:17 +00:00
10 lines
110 B
Python
10 lines
110 B
Python
a = b = 1,2
|
|
|
|
assert a == b
|
|
assert a == (1,2)
|
|
|
|
a = 1,2
|
|
|
|
a = b = c = d = '123'
|
|
|
|
assert a == b == c == d == '123' |