This website requires JavaScript.
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
mirror
/
micropython
kopia lustrzana
https://github.com/micropython/micropython
Obserwuj
1
Polub
0
Forkuj
You've already forked micropython
0
Kod
Zgłoszenia
Projekty
Wydania
Wiki
Aktywność
dc3faea040
micropython
/
tests
/
basics
/
dict_iterator.py
6 wiersze
83 B
Python
Czysty
Zwykły widok
Historia
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. With dict being unordered of course.
2014-04-06 18:28:44 +00: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. With dict being unordered of course.
2014-04-06 18:28:44 +00:00
els
.
append
(
(
i
,
d
[
i
]
)
)
print
(
sorted
(
els
)
)