Files
RustPython/extra_tests/snippets/builtin_len.py
2020-09-13 06:58:57 +09:00

3 lines
48 B
Python

assert 3 == len([1,2,3])
assert 2 == len((1,2))