xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
basics
/
list_clear.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
# tests list.clear
2
x
= [
1
,
2
,
3
,
4
]
3
x
.
clear
()
4
print
(
x
)
5