python内置函数
2019-07-17 19:41:15 30 举报
AI智能生成
python的内置函数归纳总结
作者其他创作
大纲/内容
反射相关(4)
hasattr
getattr
setattr
delattr
基础数据类型相关(38)
和数字相关(14)
数据类型(4)
bool
int
float
complex
进制转换(3)
bin
oct
hex
数学运算(7)
abs
计算绝对值
divmod
返回(除,余)
round
小数精确
round(2.1213345245,2)
pow
幂运算
pow(x,y,z)
x**y
x**y%z
sum
求和
sum(iterable,start)
iterable参数必须是一个可迭代数字集
start指出求和的初始值。start和iterable中的值为最终的和
min
计算最小值
min(iterable,key,default)
min({1,2,3,4,-5})
min({},1)
min({1,2,3,4,5},key=lambda n:abs(n))
min(*args,key,defult)
max
计算最大值
max(iterable,key,default)
max(*args,key,default)
和数据结构相关(24)
序列(13)
列表和元组(2)
list
tuple
相关内置函数(2)
reversed
参数:序列
返回值:反序迭代器
slice
字符串(9)
str
format
http://www.cnblogs.com/linhaifeng/articles/7133357.html
bytes
bytes(s,enconding='utf-8')
bytearray
bytearray(s,encoding='utf-8')
memoryview
memoryvies(bytes('hello,eva',encoding='utf-8'))
ord
字符按照unicode转数字
chr
数字按照unicode转字符
ascii
字符串转ascii
repr
用于%r格式化输出
数据集合(3)
字典(1)
dict
集合(2)
set
frozenset
相关内置函数(8)
len
enumerate
all
判断是否有bool值为False的值
any
判断是否有bool值为True的值
zip
返回一个迭代器
filter
http://www.cnblogs.com/linhaifeng/articles/7133357.html
map
http://www.cnblogs.com/linhaifeng/articles/7133357.html
sorted
http://www.cnblogs.com/linhaifeng/articles/7133357.html
作用域(2)
locals
globals
面向对象相关(9)
定义特殊方法的装饰器(3)
classmethod
starticmethod
property
判断对象/类与类间的关系(2)
isinstance
issubclass
所有类的基类
object
继承相关
super
封装相关
vars
数据类型相关
type
迭代器/生成器相关(3)
range
next
iter
其他(12)
字符串类型代码的执行(3)
eval
exec
compile
输入输出(2)
input
print
内存相关(2)
hash
id
文件操作相关
open
模块相关
__import__
帮助
help
调用相关
callable
查看内置属性
dir
收藏
0 条评论
下一页