Report Bug
Qus : For two objects x and y, the expression x is y will yield True, if and only if
Qusदो वस्तुओं x और y के लिए, व्यंजक x, y है, सत्य प्राप्त करेगा, यदि और केवल यदि

A. id(x) == id(y)
B. len(x) == len(y)
C. x == y
D. all of these


Solution
A. id(x) == id(y)






Report Bug