Browse Source

List

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

7
README.md

@ -30,6 +30,13 @@ flattened_list = [item for sublist in <list> for item in sublist]
list_of_chars = list(<str>)
```
```python
a.insert(index, <el>)
<el> = a.pop([index])
a.remove(<el>)
<int> = a.index(<el>)
```
Dictionary
----------

Loading…
Cancel
Save