pythonreference.com
search statements, functions, methods, exceptions*
hide categories'for' with a list, tuple or set | iterate over each item in a container |
'in' membership test with list, set, tuple | return True if item is in a container, False otherwise |
len() with a list, tuple or set | return integer length of a list, tuple or set |
list.append() | add an item to end of list |
slice with a list or tuple | select items from a list or tuple by index |
subscript with a list or tuple | select an item from a list or tuple |