mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 09:50:20 +02:00
7 lines
115 B
Python
7 lines
115 B
Python
d = {1: 2}
|
|
for m in d.items, d.values, d.keys:
|
|
print(m())
|
|
print(list(m()))
|
|
|
|
# set operations still to come
|