python内置函数大全表
时间: 2023-06-26 19:06:38 浏览: 100
python内置函数大全
以下是 Python 内置函数的完整列表:
数学函数:
abs()、divmod()、pow()、round()、max()、min()、sum()
字符串函数:
ord()、chr()、len()、str()、bytes()、repr()、ascii()、format()、bytearray()、hex()、oct()、eval()
列表函数:
list()、tuple()、set()、frozenset()、dict()
迭代器和生成器函数:
iter()、next()、yield()
文件操作函数:
open()、close()、read()、write()、seek()、tell()
异常处理函数:
try...except...finally、raise
模块和包相关函数:
import、from、as、def、class、global、nonlocal、lambda、return、yield
其他:
type()、isinstance()、callable()、exit()、print()、input()、help()、dir()、id()、property()、setattr()、getattr()、delattr()、locals()、globals()、vars()
注意,在使用某个函数之前,需要先导入相应的模块或包。例如,在使用 math 模块的数学函数时,需要先导入 math 模块。
阅读全文