摘要: 内置函数 1. abs() 获取绝对值 2. all() 接受一个迭代器,如果迭代器的所有元素都为真,那么返回True,否则返回False >>> all("") True >>> all({}) True 0是False,0不为True,有一个不为False就返回False。 3. any() 接 阅读全文
posted @ 2017-03-27 20:41 Tsukasa鱼 阅读(184) 评论(0) 推荐(0)