Python | Functions | Question 1
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
Please Login to comment...