码迷,mamicode.com
首页 > 编程语言 > 详细

python中使用hasattr(x,'call')来判断一个对象是否存在某个方法

时间:2014-12-10 21:02:10      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:使用   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!