micropython/tests/basics/list_clear.py

5 wiersze
55 B
Python
Czysty Zwykły widok Historia

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