原始字符串忽略反斜线,例如写路径时:
>>> print 'C:\nowhere'
C:
owhere
如果用原始字符串
>>>print r 'C:\nowhere'
C:\nowhere
在python脚本文件中, 当想输出过长字符串时可使用三个单引号
print ' ' 'this is a long string
it continues here
"hello world"
still here. ' ' '
运行此脚本时, 输出三引号中的语句
模块可以想象成导入到python以增强其功能的扩展, 需要使用import命令来导入模块, 然后按照"模块.函数"的格式使用这个函数
abs(number) 返回数字的绝对值
cmath.sqrt(number) 返回平方根, 也可运用于负数
float(object) 将字符串和数字转换为浮点数
help() 提供交互式帮助
input(prompt) 获取用户输入
math.ceil(number ) 返回数的上入整数, 返回值类型为浮点数
math.floor(number) 返回数的下舍整数
math.sqrt(numer) 返回平方跟, 不适用于负数
raw_input(prompt) 获取用户输入, 结果被看做原始字符串
repr(object) 返回值的字符串表示形式
round(number[. ndigits]) 根据给定的精度对数字进行四舍五入
str(object ) 将值转换为字符串