Basically I want to do this:
obj = 'str'
type ( obj ) == string
I tried:
type ( obj ) == type ( string )
and it didn’t work.
Also, what about the other types? For example, I couldn’t replicate NoneType
.
Basically I want to do this:
obj = 'str'
type ( obj ) == string
I tried:
type ( obj ) == type ( string )
and it didn’t work.
Also, what about the other types? For example, I couldn’t replicate NoneType
.