发布时间:2019-09-07 07:56:38编辑:auto阅读(4989)
通常在多个不等式的时候,需要分着写,比如
x = 1
if x>0 and x<3:
print(True)
但是在Python中居然可以连着一起写,
x = 1
if 0<x<3:
print(True)
上一篇: python request 发送for
下一篇: Docker教程:使用docker配置p
51346
50809
41402
38201
32693
29585
28417
23302
23258
21590
1667°
2400°
2007°
1943°
2275°
1973°
2678°
4479°
4307°
3070°