1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-11-22 11:04:25 +01:00

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

2
README.md vendored
View File

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