xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
basics
/
list_reverse.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
a
= []
2
for
i
in
range
(
100
):
3
a
.
append
(
i
)
4
a
.
reverse
()
5
print
(
a
)
6