Open In App

Python | Functions | Question 1

Like Article
Like
Save Article
Save
Share
Report issue
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


Last Updated : 28 Jun, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads