关联阅读:Python3内置函数总结
手机版本
关联阅读:Python3内置函数总结
python 68个内置函数
迭代器/生成器相关(3)
range
next
iter
作用域(2)
locals
globals
反射相关(4)
hasattr
getattr
setattr
delattr
和数据结构相关(24)
序列(13)
- 列表和元组(2)
- list
- tuple
- 相关内置函数(2)
- 参数:序列
- 返回值:反序迭代器
- reversed
- slice
- 字符串(9)数据集合(3)
- 用于%r格式化输出
- 字符串转ascii
- 数字按照unicode转字符
- 字符按照unicode转数字
- memoryvies(bytes('hello,eva',encoding='utf-8'))
- bytearray(s,encoding='utf-8')
- bytes(s,enconding='utf-8')
-
- str
- format
- bytes
- bytearray
- memoryview
- ord
- chr
- ascii
- repr
- 字典(1)
- dict
- 集合(2)相关内置函数(8)
- set
- frozenset
- len
- enumerate
- all
- 判断是否有bool值为False的值
- any
- 判断是否有bool值为True的值
- zip
- 返回一个迭代器
- filter
-
和数字相关(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(*args,key,defult)
- min({1,2,3,4,-5})
- min({},1)
- min({1,2,3,4,5},key=lambda n:abs(n))
- 计算最小值
- max
- max(iterable,key,default)
- max(*args,key,default)
- 计算最大值
公众号:IT入门
回复:68
下载高清思维导图
学习python
http://dida100.com/it/">http://dida100.com/it/
面向对象相关(9)
定义特殊方法的装饰器(3)
- classmethod
- starticmethod
- property
判断对象/类与类间的关系(2) - isinstance
- issubclass
所有类的基类 - object
继承相关 - super
封装相关 - vars
数据类型相关 - type
其他(12)
字符串类型代码的执行(3)
- eval
- exec
- compile
输入输出(2) - input
- print
内存相关(2) - hash
- id
文件操作相关 - open
模块相关 - import
帮助 - help
调用相关 - callable
查看内置属性 - dir
下载方式
高清思维导图下载
关注下方公众号
回复:“68”
长按上方二维码即可关注
回复:“web01”领取
在线学免费学编程
http://dida100.com/it
长按2秒学代码学单词