Report Bug
Qus : What is the return type of function id?
Qusफ़ंक्शन आईडी का रिटर्न प्रकार क्या है?

A. int
B. float
C. bool
D. dict


Solution
A. int



Explanation
Execute help(id) to find out details in python shell.id returns a integer value that is unique.



Report Bug