Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 132 Bytes

File metadata and controls

8 lines (6 loc) · 132 Bytes

Python Cheatsheet

Containers

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