mirror of
https://github.com/W3SLAV/micropython.git
synced 2025-06-19 20:15:33 -04:00
5 lines
55 B
Python
5 lines
55 B
Python
# tests list.clear
|
|
x = [1, 2, 3, 4]
|
|
x.clear()
|
|
print(x)
|