This website requires JavaScript.
Explore
Help
Sign In
mirrors
/
micropython
mirror of
https://github.com/micropython/micropython.git
Watch
1
Star
0
Fork
You've already forked micropython
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
5fd5af98d0
micropython
/
tests
/
basics
/
dict_clear.py
7 lines
69 B
Python
Raw
Normal View
History
Unescape
Escape
Added dict.clear. Added 0 to the list of primes. Funky primes, these.
2014-01-06 17:38:47 +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 19:28:44 +01:00
print
(
len
(
d
)
)
Added dict.clear. Added 0 to the list of primes. Funky primes, these.
2014-01-06 17:38:47 +00:00
d
.
clear
(
)
print
(
d
)
d
[
2
]
=
42
print
(
d
)