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
Attention reader! Don’t stop learning now. Get hold of all the important DSA concepts with the DSA Self Paced Course at a student-friendly price and become industry ready.