Skip to content

Commit eabf355

Browse files
authored
Update README.md
1 parent 8878880 commit eabf355

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ Lists
137137
```python
138138
my_list = [1, 2, '3', True]# we assume this list won't mutate for each example below
139139
len(my_list) # 4
140-
my_list.index(2) # '3'
140+
my_list.index('3') # 2
141141
my_list.count(2) # 1 --> count how many times 2 appears
142142

143143
my_list[3] # True

0 commit comments

Comments
 (0)