为什么下面两个变量的比较返回(1, False, 2),而不是仅仅返回True。
(1, False, 2)
True
a = 1 b = 2 a,b == 1,2
python python-3.x
python ×1
python-3.x ×1