| 
 | 
 
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册  
 
x
 
 本帖最后由 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...][key])          
min(iterable[, args...][key])         
dict([arg])         
list([iterable])          
set()         
frozenset([iterable])         
str([object])          
sorted(iterable[, cmp[, key[, reverse]]])          
tuple([iterable])          
xrange([start], 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([fget[, fset[, fdel[, doc]]]]) 
reduce(function, iterable[, initializer])          
reload(module)          
setattr(object, name, value)         
repr(object)          
slice()          
staticmethod         
super(type[, object-or-type])          
type(object)         
vars([object])          
bytearray([source [, encoding [, errors]]]) 
 
五、IO操作 
file()         
open()          
raw_input() 
print() 
input()  
六、其他 
help()--帮助信息 
 
 |   
 
 
 
 |