forked from Rust-related/RustPython
8 lines
77 B
Python
8 lines
77 B
Python
assert (1,2) == (1,2)
|
|
|
|
x = (1,2)
|
|
assert x[0] == 1
|
|
|
|
y = (1,)
|
|
assert y[0] == 1
|