Python Basics – Python built-in Data Types

The following sections describe the standard types that are built into the interpreter.Python has several standard types built into the interpreter: • Numerics: int, float, complex, and bool (the subclass of int with a True or False value)• Sequences: str, list, tuple, and range• Mappings: dict• Sets: set and frozenset• None: The null object [The… Read More Python Basics – Python built-in Data Types

Rate this: