标签:
函数的使用
官方文档:https://docs.python.org/2/library/functions.html
查看帮助
>>> help(abs) Help on built-in function abs in module __builtin__: abs(...) abs(number) -> number Return the absolute value of the argument. (END)
按q退出。
实例:
divmod()
>>> divmod(5,2) #表示5除以2的商和余数 (2, 1) >>> divmod(9,2) (4, 1)
round()
>>> round(3.3456,3) #保留3位小数,进行4舍五入 3.346
raw_input()
类似于bash中的read,注意它的输出都是Str类型的。
>>> name=raw_input("How old are you?") How old are you?15 >>> type(name) <type ‘str‘> >>> print name 15
标签:
原文地址:http://www.cnblogs.com/zydev/p/5834398.html