Source Code:
(back to article)
x = 5 print(type(x)) # Output: <class 'int'> y = "hello" print(type(y)) # Output: <class 'str'>
Result:
Report an issue