Python Function Reference

type
Return the type of an object.
Python 3.13
type(object)
object
The object to get the type of.
Examples
Python 3.13
>>> type(123)
<class 'int'>