python-small-examples/md/13.md at master · data-python/python-small-examples

Skip to content

Navigation Menu

Sign in

Appearance settings

Latest commit

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