In [142]: (MON,TUE,WED,THR,FRI,SAT,SUN)<>range(7)
Out[142]: True
In [143]: (MON,TUE,WED,THR,FRI,SAT,SUN)==range(7)
Out[143]: False
答案 0 :(得分:0)
运营商“&lt;&gt;”表示“不等于”,运算符“==”表示“等于”。如果被比较的两件事不相等,前者评估为真,如果被比较的两件事是相等的,后者评估为真。
http://www.tutorialspoint.com/python/comparison_operators_example.htm