Data Type

Data types are the different types of variables in Python.

You can determine the data type of a value by using type()

type(23.0) # float  

The two numeric data types are int and float.