Fundamental Data Types

None

None
Object that denotes the lack of value.

Numbers

bool
True and False Boolean values. Evaluate to 1 and 0 respectively.
int
Integer numbers.
long
Long integer numbers.
float
Floating point numbers.
complex
Complex numbers.

Sequences

str
Strings of characters. Immutable.
`unicode`_
Unicode strings of characters. Immutable.
list
Indexed list of objects. Mutable.
tuple
Indexed list of objects. Immutable.

Mappings

dict
Hash table for storing unordered key-value pairs. Mutable.

Sets

set
Unordered list of unique objects. Mutable.

Files

file
File objects.