micropython/tests/basics/list_clear.py

5 lines
55 B
Python
Raw Normal View History

2014-01-03 16:22:53 -07:00
# tests list.clear
x = [1, 2, 3, 4]
x.clear()
print(x)