How does Python classify books = 5 and price = 19.99?
books = 5
price = 19.99
books is an int, while price is a float.
books
int
price
float
books is a float, while price is an int.
Both are strings because variables always store text.
Both are Boolean values because they are nonzero.