max(l) //返回最大值 l为列表
min(l) //返回最小值
len(l) //l 的长度,l 为序列
divmod(5,2) // 5/2 返回元组(2,1) 商为2 余数为1
help(pow) //查找该函数用处
pow(2,3) //返回2^3 = 8
round(10) //10.0
round(112) // 112.0
callable(f) //测试某个函数可否被调用,如果f没被定义,则不可调用
callable(min) //返回True
f = 100
callable(f) // 返回FALSE f 不是函数
isinstance()
l = [1,2,3,4,5,6]
type([]) // type list
if type (l) == type([]):
print "OK"
返回OK
isinstance(l , list) //查看l 是不是list
返回True
isintance(l, int) //FALSE
cmp("hello","hello" ) //0
range()用于快速生成一个序列
xrange(10) //生成一个对象,返回xrange(10)
大数运算时效率比range()高
l 为列表
tuple(l) 则转化为元组
s为字符串hello
int(s) 不可以转化为int
s = "123" 可以转化为int
时间: 2024-12-25 07:14:28