4 lines
48 B
Python
4 lines
48 B
Python
d = {1: 2, 3: 4}
|
|
for i in d:
|
|
print(i, d[i])
|
d = {1: 2, 3: 4}
|
|
for i in d:
|
|
print(i, d[i])
|