Python Cheatsheet Containers # list list = [0, 1, 2, 3, 4, 5] # mutable tuple = (0, 1, 2, 3, 4, 5) # immutable