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

Python3中的内置函数,实例讲解-每日持续更新

时间:2016-06-13 19:25:10      阅读:206      评论:0      收藏:0      [点我收藏+]

标签:python   内置函数   python built-in functions   python dir   

all

>>> m = []
>>> n = [1,2,3]
>>> l = [1,‘‘]
>>> all(m)
True
>>> all(n)
True
>>> all(l)
False
>>>

dir

Without arguments, return the list of names in the current local scope.
eg:


>>> dir()
[‘__builtins__‘, ‘__doc__‘, ‘__loader__‘, ‘__name__‘, ‘__package__‘, ‘__spec__‘]
>>> m=[]
>>> dir()
[‘__builtins__‘, ‘__doc__‘, ‘__loader__‘, ‘__name__‘, ‘__package__‘, ‘__spec__‘, ‘m‘]
>>>


With an argument, attempt to return a list of valid attributes for that object.
eg:


>>> m=[]
>>> dir(m)
[‘__add__‘, ‘__class__‘, ‘__contains__‘, ‘__delattr__‘, ‘__delitem__‘, ‘__dir__‘, ‘__doc__‘, ‘__eq__‘, ‘__format__‘, ‘__ge__‘, ‘__getattribute__‘, ‘__getitem__‘, ‘__gt__‘, ‘__hash__‘, ‘__iadd__‘, ‘__imul__‘, ‘__init__‘, ‘__iter__‘, ‘__le__‘, ‘__len__‘, ‘__lt__‘, ‘__mul__‘, ‘__ne__‘, ‘__new__‘, ‘__reduce__‘, ‘__reduce_ex__‘, ‘__repr__‘, ‘__reversed__‘, ‘__rmul__‘, ‘__setattr__‘, ‘__setitem__‘, ‘__sizeof__‘, ‘__str__‘, ‘__subclasshook__‘, ‘append‘, ‘clear‘, ‘copy‘, ‘count‘, ‘extend‘, ‘index‘, ‘insert‘, ‘pop‘, ‘remove‘, ‘reverse‘, ‘sort‘]
>>>



Python3中的内置函数,实例讲解-每日持续更新

标签:python   内置函数   python built-in functions   python dir   

原文地址:http://opentesting.blog.51cto.com/4398329/1788807

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