摘要: pythonr-内置函数 all print (all([1,-5,3])) print (all([0,-5,3])) 如果有0 就不为真,非0就是为真 打印结果 True Flase all print(any([0,0,1])) #有一个为真,他就为真 print(any([])) #为空,他 阅读全文
posted @ 2019-11-20 02:16 科子 阅读(297) 评论(0) 推荐(0) 编辑