本文主要介绍Python3.6.5标准库文档(完整中文版)---内置函数:abs(),all(),any(),ascii()
返回一个数字的绝对值。参数可以是整数或浮点数。如果参数是一个复数,则返回其大小
返回True如果的所有元素迭代是真实的(或者如果可迭代为空)。相当于:
def all(iterable):
for element in iterable:
if not element:
return False
return True
True如果迭代的任何元素为真,则返回。如果迭代器为空,则返回False。相当于:
def any(iterable):
for element in iterable:
if element:
return True
return False
如repr(),由返回的字符串中返回一个包含对象的可打印表示一个字符串,但逃避非ASCII字符 repr()使用\x,\u或\U逃逸。这会生成一个类似于repr()Python 2 中返回的字符串。