xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
basics
/
dict_iterator.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
d
= {
1
:
2
,
3
:
4
}
2
els
= []
3
for
i
in
d
:
4
els
.
append
((
i
,
d
[
i
]))
5
print
(
sorted
(
els
))
6