Source Code:
(back to article)
x = 5 print(type(x)) # Output: <class 'int'> print(isinstance(x, int)) # Output: True
Result:
Report an issue