Python Data Types
Python has several built-in data types.
Core Types
| Type | Example |
|---|---|
| int | 42 |
| float | 3.14 |
| str | "hello" |
| bool | True/False |
| list | [1,2,3] |
| dict | {"key":"val"} |
| tuple | (1,2,3) |
| set | {1,2,3} |
x = 10; print(type(x)) # int
y = 3.14; print(type(y)) # float