python how to get the type of element 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