In [1]:
type(10)


Out[1]:
int

In [2]:
type(2.718)


Out[2]:
float

In [3]:
type('Hello')


Out[3]:
str

In [ ]: