Skip to content

Commit 330cb60

Browse files
authored
Fix typo
Changes "f" to "t" in the output.
2 parents 753d0b6 + 57fb824 commit 330cb60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1495,7 +1495,7 @@ for i, some_dict[i] in enumerate(some_string):
14951495
**Outuput:**
14961496
```py
14971497
>>> some_dict # An indexed dict is created.
1498-
{0: 'w', 1: 'f', 2: 'f'}
1498+
{0: 'w', 1: 't', 2: 'f'}
14991499
```
15001500

15011501
#### 💡 Explanation:

0 commit comments

Comments
 (0)