Python | Functions | Question 1

Last Updated :
Discuss
Comments

What will be the output of the following code :

Python
print(type(type(int)))


<class 'int'>

<class 'type'>

<class 'object'>

TypeError

Share your thoughts in the comments