Answers for "check if class has atribute python"

2

python check if attribute exists in class

if hasattr(obj, 'propertyName'):
	...
Posted by: Guest on March-10-2021
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 "TypeScript"

Browse Popular Code Answers by Language