Data Types - igheyas/PythonTutorial GitHub Wiki

image image image image image image image image image image image image

image 📚 Python Collection Types Below are the four primary built-in collection data types in Python. Click each to learn more:

List

Ordered, mutable, allows duplicates, indexable

Tuple

Ordered, immutable, allows duplicates, indexable

Set

Unordered, mutable, no duplicates, not indexable

Dictionary

Unordered (in Python <3.7), mutable, key-value pairs