7 lines
67 B
Python
7 lines
67 B
Python
|
a = {'a': 'b', 're': '2'}
|
||
|
|
||
|
import pprint
|
||
|
|
||
|
for x in a:
|
||
|
print(x)
|