KnowledgeBoat Logo

Computer Science

For two objects x and y, the expression x is y will yield True, if and only if

  1. id(x) == id(y)
  2. len(x) == len(y)
  3. x == y
  4. all of these

Python Data Handling

14 Likes

Answer

id(x) == id(y)

Answered By

3 Likes


Related Questions