Skip to content

Commit

Permalink
remove extra space (exercism#3749)
Browse files Browse the repository at this point in the history
an extra space made the markdown fail displaying _keys_ in italics
  • Loading branch information
Gautzilla authored Jul 25, 2024
1 parent 2043712 commit cf0f7c0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ KeyError: 'name'

## Looping through/Iterating over a Dictionary

Looping through a dictionary using `for item in dict` or `while item` will iterate over only the _keys _ by default.
Looping through a dictionary using `for item in dict` or `while item` will iterate over only the _keys_ by default.
You can access the _values_ within the same loop by using _square brackets_:

```python
Expand Down

0 comments on commit cf0f7c0

Please sign in to comment.