内置函数(68)
2017-08-01 11:16:07 358 举报
AI智能生成
python3.6的68个内置函数分类图
作者其他创作
大纲/内容
反射相关(4)
hasattr
getattr
setattr
delattr
基础数据类型相关(38)
和数字相关(14)
数据类型(4)
bool
int
float
complex
进制转换(3)
bin
二进制
oct
八进制
hex
十六进制
数学运算(7)
abs
计算绝对值
divmod
返回(除,余)
round
小数精确
round(2.12133112,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,defult)
max(*args,key,defult)
和数据结构相关(24)
序列(13)
列表和元组(2)
list
tuple
相关内置函数(2)
reversed
参数:序列
返回值:反序迭代器
slice
字符串(9)
str
format
http://www.cnblogs.com/Eva-J/articles/7266245.html
bytes
bytes(s,encoding='utf-8')
bytearray
bytearray(s,encoding='utf-8')
memoryview
memoryview(bytes('hello,eva',encoding='utf-8'))
ord
字符按照unicode转数字
chr
数字按照unicode转字符
ascii
只要是ascii码中的内容,就打印出来,不是就转换成\u
repr
用于%r格式化输出
数据集合(3)
字典(1)
dict
集合(2)
set
frozenset
相关内置函数(8)
len
enumerate
all
判断是否有bool值为False的值
any
判断是否有bool值为True的值
zip
返回一个迭代器
filter
http://www.cnblogs.com/Eva-J/articles/7266192.html
map
http://www.cnblogs.com/Eva-J/articles/7266192.html
sorted
http://www.cnblogs.com/Eva-J/articles/7265992.html
作用域相关(2)
locals
globals
面向对象相关(9)
定义特殊方法的装饰器(3)
classmethod
starticmethod
property
判断对象/类与类间的关系(2)
isinstance
issubclass
所有类的基类
object
继承相关
super
封装相关
vars
数据类型相关(1)
type
迭代器/生成器相关(3)
range
next
iter
其他(12)
字符串类型代码的执行(3)
eval
exec
compile
编译
输入输出(2)
input
print
内存相关(2)
hash
id
文件操作相关(1)
open
模块相关(1)
__import__
import
调用相关(1)
callable
返回True或者False
帮助(1)
help
进入help模式
help()
退出输入"q"
制定查看某对象的帮助信息
help(o)
查看内置属性(1)
dir
查看所有的内置函数
dir(__builtins__)
查看某对象的属性及方法
dir(o)
0 条评论
下一页