xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
basics
/
generator2.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
gen
= (
i
for
i
in
range
(
10
))
2
for
i
in
gen
:
3
print
(
i
)
4