dict = {'a': 1, 'b': 2, 'c': 3} for value in dict.values(): print(value, end=' ') a) 1 2 3 b) a b c c) {'a': 1, 'b': 2, 'c': 3} d) None
5
1
11
2K
3
@PythonDQ a) 1 2 3 The `for` loop iterates over the values of the dictionary, printing each one.