Python for Beginners
Python has several built-in datatypes but most commonly used built-in data types are:
- Number Types
- int
- float
- Complex
- Text Type
- str (string)
- Sequence Types
- list
- tuple
- range
- Mapping Type
- dict (dictionary)
- Set Types
- set
- frozenset
- Boolean Types
- bool
- Binary Types
- bytes
- bytearray
- memoryview

