All problems
EasyDicts
Iterate keys and values
Print each "key=value" pair from a dict, one per line.
- #dict
- #loops
Sample input
{"a": 1, "b": 2, "c": 3}Sample output
a=1 b=2 c=3
dict-iterate.py
Output
Press "Run code" to execute.
Loading…
Print each "key=value" pair from a dict, one per line.
{"a": 1, "b": 2, "c": 3}a=1 b=2 c=3
Press "Run code" to execute.