Browse Source

List

pull/3/head
Jure Šorn 6 years ago
parent
commit
f8d5a54038
1 changed files with 1 additions and 1 deletions
  1. 2
      README.md

2
README.md

@ -35,7 +35,7 @@ list_of_chars = list(<str>)
index = <list>.index(<el>) # Returns first index of item.
<list>.insert(index, <el>) # Inserts item at index and moves the rest to the right.
<el> = <list>.pop([index]) # Removes and returns item at index or from the end.
<list>.remove(<el>) # Removes first occurance of item.
<list>.remove(<el>) # Removes first occurrence of item.
<list>.clear() # Removes all items.
```

Loading…
Cancel
Save