python_ref_isinstance_3.py:
x
 
class myObj:
  name = "Bill"
y = myObj()
x = isinstance(y, myObj)
print(x)