Update README.md

Typo fix
This commit is contained in:
Parth Laxmikant Kolekar 2017-10-17 13:54:59 +05:30 committed by Satwik Kansal
parent 41e9b72fea
commit 0ce64da2fd
1 changed files with 2 additions and 2 deletions

4
README.md vendored
View File

@ -1453,7 +1453,7 @@ for item in mixed_list:
booleans_found_so_far += 1
```
**Outuput:**
**Output:**
```py
>>> booleans_found_so_far
0
@ -1605,7 +1605,7 @@ for i, some_dict[i] in enumerate(some_string):
pass
```
**Outuput:**
**Output:**
```py
>>> some_dict # An indexed dict is created.
{0: 'w', 1: 't', 2: 'f'}