demo_ref_isinstance3.py:
class myObj: name = "John" y = myObj() x = isinstance(y, myObj) print(x)
C:\Users\My Name>python demo_isinstance3.py
True