Browse Source

List

pull/3/head
Jure Šorn 7 years ago
parent
commit
7a22708734
1 changed files with 4 additions and 4 deletions
  1. 8
      README.md

8
README.md

@ -31,10 +31,10 @@ list_of_chars = list(<str>)
```
```python
a.insert(index, <el>)
<el> = a.pop([index])
a.remove(<el>)
<int> = a.index(<el>)
<list>.insert(index, <el>)
<el> = <list>.pop([index])
<list>.remove(<el>)
<int> = <list>.index(<el>)
```

Loading…
Cancel
Save