From e9e771e06521a8a257851af2ab2f5b4181e0657f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 18 Apr 2018 15:47:22 +0200 Subject: [PATCH] List --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5328749..635d8c5 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,9 @@ list_of_chars = list() ``` ```python -.insert(index, ) - = .pop([index]) -.remove() +.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]]) ```