Python | Functions | Question 6
Which of the following is the use of id() function in python?
(A) Id returns the identity of the object
(B) Every object doesn’t have a unique id
(C) All of the mentioned
(D) None of the mentioned
Answer: (A)
Explanation: Each object in Python has a unique id. The id() function returns the object’s id.
Quiz of this Question
Please comment below if you find anything wrong in the above post
Please Login to comment...