Python has several built-in data types:
Numeric: int
, float
, complex
Sequence: str
, list
, tuple
Set: set
, frozenset
Mapping: dict
Boolean: bool
None: NoneType
integer = 42
floating = 3.14
string = "Hello"
boolean = True
none_value = None