4 lines
77 B
Python
4 lines
77 B
Python
let x, y, a, b, c, d
|
|
a, (b, (c, d)) = x, y = 1, (2, '34')
|
|
print(a,b,c,d,x,y)
|