标签:size 循环 microsoft print bin style one 参数 abs
1 #!/usr/bin/env python
2 #all循环参数,如果每个元素都为真,那么all的返回值为真
3 r = all([True,‘sad‘,‘asd‘])
4 print(r)
5 #any 只有一个真,则为真
6 i = any([‘as‘,‘asd‘,‘‘])
7 print(i)
8 #绝对值
9 i = abs(-123)
10 print(i)
#每个元素都为真True,
#假:0,None,"",[],(),{}
标签:size 循环 microsoft print bin style one 参数 abs
原文地址:http://www.cnblogs.com/shiluoliming/p/6217143.html