Answers for "python how to check if part of class type"

5

python check if class has function

class A:
  def func():
    pass
hasattr(A(), 'func')
Posted by: Guest on July-03-2020

Code answers related to "python how to check if part of class type"

Python Answers by Framework

Browse Popular Code Answers by Language