Fix typo in the "For what?" example

This commit is contained in:
Wiktor Żurawik 2017-09-05 12:27:29 +02:00
parent 753d0b6aae
commit 57fb82428b
1 changed files with 1 additions and 1 deletions

2
README.md vendored
View File

@ -1495,7 +1495,7 @@ for i, some_dict[i] in enumerate(some_string):
**Outuput:**
```py
>>> some_dict # An indexed dict is created.
{0: 'w', 1: 'f', 2: 'f'}
{0: 'w', 1: 't', 2: 'f'}
```
#### 💡 Explanation: