fork download
  1. d = {'a': 1, 'b': 2, 'c': 3}
  2. for value in d.values():
  3. print(value)
Success #stdin #stdout 0.11s 13992KB
stdin
Standard input is empty
stdout
1
2
3