| Name in plain english | Type name | Used for | Example |
|---|---|---|---|
| integer | int | whole positive or negative numbers | 105 |
| floating point number | float | precise numbers with a decimal point | 8.15 |
| string | str | text | 'Introduction to Python, GitHub, and VSCode Workshop Spring 2025' |
| boolean | bool | true or false values | True |
| list | list | a collection of objects - changeable and ordered | ['Sebastian', 'Arinze'] |
| tuple | tuple | a collection of objects, unchangeable and ordered | ('Sunday', 3, 23, 2025) |
| dictionary | dict | key-value pairs | {'name': 'Reader', 'workshop': 'Introduction to Python, Github, and VSCode'} |
| none | NoneType | empty values | None |