Files
TencentOS-tiny/components/language/micropython/tests/basics/list_clear.py
2022-09-29 12:10:37 +08:00

5 lines
55 B
Python

# tests list.clear
x = [1, 2, 3, 4]
x.clear()
print(x)