Data Types
Data Type | Description | Example |
---|---|---|
int | Integer numbers |
|
float | Floating point (decimal) numbers |
|
str | Text (string) |
|
bool | Boolean values, |
|
list | Mutable ordered collection* |
|
tuple | Immutable ordered collection* |
|
dict | Collection of key-value pairs* |
|
set | Unordered collection of unique elements* |
|
NoneType | Absence of a value or a null value |
|
*
Better explained in the next section
Last modified: 17 March 2025