📖 INDEX
LOADING ENGINE...
type()
PYTHON REFERENCE // type
Returns the type of an object
Syntax
type(123) # <class 'int'>Examples
Example 01Basic Usage
type(123) # <class 'int'>Best Practices
- Consult official Python documentation for advanced usage.
- Ensure proper indentation and Pythonic style (PEP 8).