This website requires JavaScript.
Explore
Help
Sign In
m5
/
Core2forAWS-MicroPython
Watch
0
Star
0
Fork
0
You've already forked Core2forAWS-MicroPython
mirror of
https://github.com/m5stack/Core2forAWS-MicroPython.git
synced
2026-05-20 10:30:31 -07:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
Files
85858e72dfdc3e941c2e620e94de05ad663138b1
Core2forAWS-MicroPython
/
tests
/
basics
/
dict_iterator.py
T
6 lines
83 B
Python
Raw
Normal View
History
Unescape
Escape
Added dict iterator.
2014-01-06 17:17:02 +00:00
d
=
{
1
:
2
,
3
:
4
}
tests: Fix few tests which depend on order of elements in dict.
2014-04-06 21:28:44 +03:00
els
=
[
]
Added dict iterator.
2014-01-06 17:17:02 +00:00
for
i
in
d
:
tests: Fix few tests which depend on order of elements in dict.
2014-04-06 21:28:44 +03:00
els
.
append
(
(
i
,
d
[
i
]
)
)
print
(
sorted
(
els
)
)
Reference in New Issue
Copy Permalink