shiyouroc 发表于 2022-2-22 16:09:33

Python内置函数 共68个

本帖最后由 shiyouroc 于 2022-2-22 16:09 编辑

abs()         dict()      help()         min()         setattr()
all()         dir()         hex()          next()      slice()
any()         divmod()      id()         object()      sorted()
ascii()         enumerate()   input()      oct()         staticmethod()
bin()         eval()      int()          open()      str()
bool()          exec()      isinstance()   ord()         sum()
bytearray()   filter()       issubclass()   pow()         super()
bytes()         float()      iter()         print()       tuple()
callable()      format()      len()          property()    type()
chr()         frozenset()   list()         range()       vars()
classmethod()   getattr()   locals()       repr()      zip()
compile()       globals()   map()          reversed()    __import__()
complex()       hasattr()   max()          round()
delattr()       hash()      memoryview()   set()
一、数学运算类
abs()       
complex()       
divmod()       
float()       
int()
long()        
pow()        
range()        
round()        
sum()        
oct()       
hex()       
chr()       
bin()       
bool()
二、集合类操作
basestring()       
format(value [, format_spec])       
unichr(i)       
enumerate(sequence [, start = 0])       
iter(o[, sentinel])       
max(iterable[, args...])        
min(iterable[, args...])       
dict()       
list()        
set()       
frozenset()       
str()        
sorted(iterable[, cmp[, key[, reverse]]])        
tuple()        
xrange(, stop[, step])

三、逻辑判断
all(iterable)
any(iterable)       
cmp(x, y)


四、反射
callable(object)
compile(source, filename,
mode[, flags[, dont_inherit]])
delattr(object, name)       
eval(expression [, globals [, locals]])       
execfile(filename [, globals [, locals]])       
filter(function, iterable)       
getattr(object, name [, defalut])       
globals()       
hasattr(object, name)       
hash(object)       
id(object)       
isinstance(object, classinfo)       
issubclass(class, classinfo)       
len(s)        
locals()        
map(function, iterable, ...)        
memoryview(obj)        
next(iterator[, default])        
object()         基类
property(]]])
reduce(function, iterable[, initializer])        
reload(module)        
setattr(object, name, value)       
repr(object)        
slice()         
staticmethod       
super(type[, object-or-type])        
type(object)       
vars()        
bytearray(]])

五、IO操作
file()       
open()        
raw_input()
print()
input()
六、其他
help()--帮助信息

shiyouroc 发表于 2022-2-27 15:37:45

自占沙发。

shiyouroc 发表于 2022-2-27 15:38:29

自占板凳。

shiyouroc 发表于 2022-2-27 15:39:09

自占地板。

dragov 发表于 2022-12-19 17:55:14

有没有只针对这些内置函数的书籍啊(手册) ?

小甲鱼 发表于 2022-12-19 20:05:21

dragov 发表于 2022-12-19 17:55
有没有只针对这些内置函数的书籍啊(手册) ?

速查宝典来也 -> 传送门

dragov 发表于 2022-12-19 20:18:16

小甲鱼 发表于 2022-12-19 20:05
速查宝典来也 -> 传送门


是否有纸质版的宝典呀?

小甲鱼 发表于 2022-12-19 21:22:39

dragov 发表于 2022-12-19 20:18
是否有纸质版的宝典呀?

纸质的目前没有哦,用到现查多方便 {:10_254:}
页: [1]
查看完整版本: Python内置函数 共68个