mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-17 01:51:39 +09:00
4 lines
47 B
Python
4 lines
47 B
Python
l = [1,2,3]
|
|
assert [1,2,3,4,5] == (l + [4,5])
|
|
|