Isinstance method in Python

what is the use of isinstance and how to use it

1 Like

I guess you’re talking about this ? Some more info would be better here …

https://www.programiz.com/python-programming/methods/built-in/isinstance

1 Like

Python isinstance() function returns True if the specified object is of the specified type, otherwise False . If the type parameter is a tuple, this function will return True if the object is one of the types in the tuple.

How do I get the classinfo of the object which I selected on the drawing?