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

python空函数

时间:2014-07-31 19:34:17      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:os   for   new   python   size   ef   函数   c   

什么事都不做的函数就是一个空函数:

def kong():

  pass

print dir(kong())

即便是一个空函数,他也会有如下属性:

[‘__call__‘, ‘__class__‘, ‘__closure__‘, ‘__code__‘, ‘__defaults__‘, ‘__delattr__‘, ‘__dict__‘, ‘__doc__‘, ‘__format__‘, ‘__get__‘, ‘__getattribute__‘, ‘__globals__‘, ‘__hash__‘, ‘__init__‘, ‘__module__‘, ‘__name__‘, ‘__new__‘, ‘__reduce__‘, ‘__reduce_ex__‘, ‘__repr__‘, ‘__setattr__‘, ‘__sizeof__‘, ‘__str__‘, ‘__subclasshook__‘, ‘func_closure‘, ‘func_code‘, ‘func_defaults‘, ‘func_dict‘, ‘func_doc‘, ‘func_globals‘, ‘func_name‘]

我居然一直蒙在鼓里...

python空函数,布布扣,bubuko.com

python空函数

标签:os   for   new   python   size   ef   函数   c   

原文地址:http://www.cnblogs.com/smile-zhou/p/3880995.html

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