Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 154 Bytes

File metadata and controls

13 lines (11 loc) · 154 Bytes
@author jackzhenguo
@desc 
@date 2019/2/15

13 链式比较

i = 3
print(1 < i < 3)  # False
print(1 < i <= 3)  # True