diff --git a/README.md b/README.md index 635d8c5..4cd14a6 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ list_of_chars = list() ``` ```python +.clear() # Removes all items. .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.