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ść
326b2c79df
micropython
/
tests
/
basics
/
dict_copy.py
6 wiersze
100 B
Python
Czysty
Zwykły widok
Historia
Unescape
Escape
tests: Reduce large object allocations so tests can run with small heap.
2016-02-12 23:38:30 +00:00
a
=
{
i
:
2
*
i
for
i
in
range
(
100
)
}
Added dict.copy
2014-01-06 18:11:20 +00:00
b
=
a
.
copy
(
)
tests: Reduce large object allocations so tests can run with small heap.
2016-02-12 23:38:30 +00:00
for
i
in
range
(
100
)
:
Added dict.copy
2014-01-06 18:11:20 +00:00
print
(
i
,
b
[
i
]
)
print
(
len
(
b
)
)