python 是否短路布尔值a==b==c,即,如果a==b为假,则不评估第二个等式?复合相等只是 的语法糖a==b and b==c吗?
a==b==c
a==b
a==b and b==c
python
python ×1