micropython/tests/basics/dict_iterator.py

4 wiersze
48 B
Python
Czysty Zwykły widok Historia

2014-01-06 17:17:02 +00:00
d = {1: 2, 3: 4}
for i in d:
print(i, d[i])