python 內置函數和匿名函數
阿新 • • 發佈:2018-12-30
ons ict getattr bin strong property iss type 變量
內置函數
截止到python版本3.6.2,現在python一共為我們提供了68個內置函數。
Built-in Functions | ||||
---|---|---|---|---|
abs() | dict() | help() | min() | setattr() |
all() | dir() | hex() | next() | slice() |
any() | divmod() | id() | object() | sorted() |
ascii() | enumerate() | input() | oct() | staticmethod() |
bin() | eval() | int() | open() | str() |
bool() | exec() | isinstance() | ord() | sum() |
bytearray() | filter() | issubclass() | pow() | super() |
bytes() | float() | iter() | print() | tuple() |
callable() | format() | len() | property() | type() |
chr() | frozenset() | list() | range() | vars() |
classmethod() | getattr() | locals() | repr() | zip() |
compile() | globals() | map() | reversed() | __import__() |
complex() | hasattr() | max() | round() | |
delattr() | hash() | memoryview() | set() |
一、作用域相關
基於字典的形式獲取局部變量和全局變量 globals()——獲取全局變量的字典 locals()——獲取執行本方法所在命名空間內的局部變量的字典
python 內置函數和匿名函數