mirror of
https://github.com/satwikkansal/wtfpython
synced 2025-07-04 04:18:00 +02:00
Fix typo in the "For what?" example
This commit is contained in:
parent
753d0b6aae
commit
57fb82428b
1 changed files with 1 additions and 1 deletions
2
README.md
vendored
2
README.md
vendored
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue