Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 225 Bytes

13.md

File metadata and controls

16 lines (12 loc) · 225 Bytes
@author jackzhenguo
@desc 
@date 2019/2/15

13 链式比较

i = 3
print(1 < i < 3)  # False
print(1 < i <= 3)  # True
[上一个例子](12.md) [下一个例子](14.md)