Comment

Mike Lane

Your python example is a little bit wrong. It should be this:

```python
for key, value in some_dictionary.items():
    print(f'{key}: {value}')
```