Python data types :
Data Typesssssssssssss Description
int 10, -5 Integer (whole numbers)
float 3.14, -0.5 Decimal numbers
str "hello" String (text)
bool True, False Boolean (True/False)
list [1, 2, 3] Ordered, changeable collection
tuple (1, 2) Ordered, unchangeable collection
dict {"a": 1} Key-value pairs (dictionary)
set {1, 2, 3} Unordered collection of unique items