statements operators functions string methods set methods tuple methods dict methods file methods list methods exceptions exception types comprehensions multidimensionals os lambdas subprocess
Intro to Python

Session 1 Session 2 Session 3 Session 4 Session 5 Session 6 Session 7 Session 8 Session 9




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