mirror of
https://github.com/micropython/micropython.git
synced 2026-05-01 13:20:14 +02:00
b4dea46d8b
With dict being unordered of course.
6 lines
83 B
Python
6 lines
83 B
Python
d = {1: 2, 3: 4}
|
|
els = []
|
|
for i in d:
|
|
els.append((i, d[i]))
|
|
print(sorted(els))
|