how to check details of object in python code example
Example: identify object python
print(type('string'))
# <class 'str'>
print(type('string') is str)
# True
print(type('string'))
# <class 'str'>
print(type('string') is str)
# True