内置函数
Python 解释器内置了很多函数和类型,任何时候都能使用。以下按字母顺序给出列表。
截止python 3.10.8, 一共是71个内置函数
1.输入输出: 2个
print() input()
2.查看内置属性: 2个
dir() type()
3.内存相关: 2个
id() hash()
4.和数学运算相关的: 7个
abs() divmod() round() pow() sum() max() min()
5.和进制转换相关的: 3个
bin() oct() hex()
6.和字符串相关的: 9个
str() format() bytes() bytearray() memoryview() ord() chr() ascii() repr()
7.和字符串执行相关的: 3个
eval() exec() compile()
8.和数据结构相关的: 9个
set() list() dict() int() float() tuple() bool() complex() frozenset()
9.和处理序列相关的: 11个
len() sorted() reversed() slice() enumerate() isinstance() all() any() zip() filter() map()
10.文件读写: 1个
open()
11.和迭代器相关的:3个
range() next() iter()
12.三.和作用域相关的: 2个
locals() globals()
13.面向对象相关的: 8个
object() super() classmethod() staticmethod() issubclass() property() vars() callable()
14.模块相关: 1个
__import__()
15.和反射相关的内置函数: 4个
setattr() delattr() hasattr() getattr()
16.debug相关: 1个
breakpoint()
17.异步编程: 2个
aiter() anext()
18.查看帮助: 1个
help()
标签:内置,函数,python,3.10,71,相关
From: https://www.cnblogs.com/leeyong49/p/16794525.html