标签:使用 sp on bs ef as tt nbsp python
class Person:
def PrintName(self):
print ‘Is a Person‘
def PrintHello(self):
print ‘Hello, world‘
per = Person()
per.PrintName()
print hasattr(per,‘PrintName‘)#True
python中使用hasattr(x,'call')来判断一个对象是否存在某个方法
标签:使用 sp on bs ef as tt nbsp python
原文地址:http://www.cnblogs.com/Alexander11/p/4156199.html