首页 > 代码库 > Python学习笔记1—内置函数

Python学习笔记1—内置函数

函数的使用

官方文档: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 name15

 

Python学习笔记1—内置函数