General Data Types
Data Type | Python Type | Immutable & Hashable |
---|---|---|
Boolean | bool | Yes |
Integer | int | Yes |
Floating point number | float | Yes |
String | str | Yes |
Bytes | bytes | Yes |
Collection Data Types
Data Type | Python Type | Immutable & Hashable |
---|---|---|
Tuple | tuple | Yes |
Set | set | No |
Frozen Set | frozenset | Yes |
List | list | No |
Dictionary | dictionary | No |