diff --git a/README.md b/README.md index 4cd14a6..0d7960f 100644 --- a/README.md +++ b/README.md @@ -31,11 +31,11 @@ list_of_chars = list() ``` ```python -.clear() # Removes all items. +index = .index(, [start, [stop]]) .insert(index, ) # Inserts item at index and moves the rest right. = .pop([index]) # Removes and returns item at index. .remove() # Removes first occurance of item. -index = .index(, [start, [stop]]) +.clear() # Removes all items. ```