python 常用函数

str():用户希望看到的形式。

repr():代码中的状态。name=raw_input():把所有的输入当作原始字符串。name=input():要求输入合法的python表达式,在程序中,尽量使用raw_input()函数。

字符串:长字符串:'''str''',"""str"""原始字符串:r'str',不把\当作特殊字符,处理路径时尤其有用。最后一个字符不能是\。unicode字符:u'str'

+(加)-(减)*(乘)/(除)//(整除)**(乘方)-(取反)长整型:1000L十六进制:0xAF八进制:010

常用函数:abs(number):求绝对值。cmath.sqrt(number):求平方根,支持负数,需要importcmath。float(object):转换字符串、数字到浮点数。help():交互式帮助。input(promt):用户输入,要求是合法的python表达式。int(object):转换字符串、数字到int类型。long(object):转换字符串、数字到long类型。math.ceil(number):向上取整,返回float。math.floor(number):向下取整,返回float。math.sqrt(number):求平方根,不支持负数,返回float。pow(x,y[,z]):x的y次方,并且对z取模。raw_input(prompt):用户输入,返回类型为字符串。round(number[,ndigits]):四舍五入,ndigits表示取整的精度。

相关推荐