How can you know if a 2 variables are different instances of the same class? x = someclass() y= someclass() I tried is, type, and type(x) is someclass, but none seem to work unless I did it wrong.