This document summarizes Python's standard data types including numbers, strings, lists, tuples, and dictionaries. It provides examples of how to define and manipulate each type. Numbers can be used for mathematical operations while strings support slicing and concatenation. Lists are versatile and allow different data types, with items accessed via indexes. Tuples are similar to lists but immutable. Dictionaries store key-value pairs and are accessed via keys.
Related topics: