Changes "f" to "t" in the output.
This commit is contained in:
Satwik Kansal 2017-09-05 06:44:34 -07:00 committed by GitHub
commit 330cb601cf
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: