Open In App

Python | Functions | Question 1

Last Updated : 28 Jun, 2021
Like Article
Like
Save
Share
Report

What will be the output of the following code :




print type(type(int))


(A) type ‘int’

(B) type ‘type’

(C) Error
(D) 0


Answer: (B)

Explanation: The type() function returns the class of the argument the object belongs to. Thus, type(int) returns which is of the type ‘type’ object.

Quiz of this Question


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads