@ -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>)