mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 01:40:34 +02:00
4 lines
48 B
Python
4 lines
48 B
Python
d = {1: 2, 3: 4}
|
|
for i in d:
|
|
print(i, d[i])
|