Comprehensive Python Cheatsheet

PHOTO EMBED

Tue Mar 01 2022 13:08:24 GMT+0000 (Coordinated Universal Time)

Saved by @morristech #python

<list>.insert(<int>, <el>)     # Inserts item at index and moves the rest to the right.
<el>  = <list>.pop([<int>])    # Returns and removes item at index or from the end.
<int> = <list>.count(<el>)     # Returns number of occurrences. Also works on strings.
<int> = <list>.index(<el>)     # Returns index of the first occurrence or raises ValueError.
<list>.remove(<el>)            # Removes first occurrence of the item or raises ValueError.
<list>.clear()                 # Removes all items. Also works on dictionary and set.
content_copyCOPY

https://gto76.github.io/python-cheatsheet/index.html?theme