有没有理由为什么下一个元组比列表更大?
>>> t = ( 1, 2, 3 ) >>> l = [ 1, 2, 3 ] >>> t > l True >>> t < l False
python python-2.7
python ×1
python-2.7 ×1