python / 未分类 · 2013年11月18日

python的内置函数(built-in functions)

python的内置函数(built-in functions)
python的内置函数可以直接调用,无需import。有很多
那天在看salt 遇到 any
any(iterable)
Return True if any element of the iterable is true. If the iterable is empty, return False. Equivalent to:
说明:如果iterable的任何元素不为0、”、False,all(iterable)返回True。如果iterable为空,返回False。函数等价于:
我在平时常用到的,
int()将字符串或者小数转换成整数
str()将其他类型转换是字符型
len(X)返回X的长度。The argument may be a sequence (string, tuple or list) or a mapping (dictionary).
print()输出
type(X)返回X的数据类型
open(f)打开一个文件f并返回文件类型的对象。 和file()相似。
http://www.pythontab.com/html/2013/hanshu_0117/137.html
http://blog.sina.com.cn/s/blog_4d14fb2b0100wnoz.html
http://docs.python.org/2/library/functions.html