我是 Python 新手,我有一个问题。我被告知要与我为同一程序制作的另一篇文章分开问这个问题。这是作业,所以我想要一些指导。我有一个元组列表,我想按 tuple[0] 对其进行排序并返回完整的元组以用于打印到屏幕上。元组由 (score,mark(x or o),index) 组成
这是我的基本代码(井字游戏的一部分-我在另一篇文章中有完整代码):::
listOfScores = miniMax(gameBoard)
best = max(listOfScores, key=lambda x: x[0])
if best[0] == 0:
print("You should mark " + best[1] + " in cell " + best[2] + ".")
print("This will lead to a tie.")
elif best[0] > 0:
print("You should mark " + best[1] + " in cell " + best[2] + ".")
print("This will lead to a win.")
else:
print("You should mark " + best[1] + " in cell " + best[2] + ".")
print("This will lead to a loss.")
我收到此错误:::
Traceback (most recent call last):
File "C:\Users\Abby\Desktop\CS 3610\hw2\hw2Copy.py", line 134, in <module>
main()
File "C:\Users\Abby\Desktop\CS 3610\hw2\hw2Copy.py", line 120, in main
best = max(listOfScores, key=lambda x: x[0])
TypeError: unorderable types: list() > int()
我不确定为什么会这样。这是我第一次尝试使用它:
best = max(listOfScores, key=lambda x: x[0])
所以我认为也许我使用不正确。有没有更好的方法对这些元组进行排序(从最大到最小,从最小到最大),以便我可以检索最小或最大值?谢谢!:)