什么是不可排序的错误,为什么我无法比较列表中的值?



我正在编写一个玩战争纸牌游戏的程序。每个玩家都有一套牌,我已经让它随机处理了。我需要它能够比较列表中的两个值并根据它们的整数值做一些事情。我编写的代码如下:

from random import *
def main():
    cards = [1,2,3,4,5,6,7,8,9,10,11,12]*4
    p1 = []
    p2 = []
    while len(cards) != 0:
        m = randint(0,len(cards))
        p1.append(cards[m-1])
        del cards[m-1]
        n = randint(0,len(cards))
        p2.append(cards[n-1])
        del cards[n-1]
    print(p1, p2)
    def game():
        if p1[0] > p2[0]:
            p1.append(p2[0])
            del p2[0]
        elif p2[0] > p1[0]:
            p2.append(p1[0])
            del p1[0]
        else:
            if len(p1) > len(p2):
                print(p1, p2)
                for i in range(1,len(p2)):
                    if int(p1[i]) > int(p2[i]):
                        p1.append(p2[0:i])
                        del p2[0:i]
                    if int(p2[i]) > int(p1[i]):
                        p2.append(p1[0:i])
                        del p1[0:i]
                    else:
                        continue
            else:
                print(p1, p2)
                for i in range(1,len(p2)):
                    if int(p1[i]) > int(p2[i]):
                        p1.append(p2[0:i])
                        del p2[0:i]
                    if int(p2[i]) > int(p1[i]):
                        p2.append(p1[0:i])
                        del p1[0:i]
                    else:
                        continue
    while len(p1) > 0 and len(p2) > 0:
         game()
    print("player 1 has", p1, " and player 2 has ", p2)
    if len(p1) == 0:
        print("Player 2 wins")
    elif len(p2) == 0:
        print("Player 1 wins")
    input("Press enter to exit")

但是每次我运行它时,它都运行良好,直到它打成平局。一旦它比较前两个以外的任何值,它就会打印此错误:

Traceback (most recent call last):
  File "<pyshell#12>", line 1, in <module>
    main()
  File "C:UsersJesseDocumentsJessehomeworkComputer ScienceProgramsWar.py", line       52, in main
    game()
  File "C:UsersJesseDocumentsJessehomeworkComputer ScienceProgramsWar.py", line      32, in game
     if p1[i] > p2[i]:
 TypeError: unorderable types: int() > list()

这是什么意思?比较前两者和其他两个有什么区别?

看起来你正在使用 Python3。Python2 将允许您比较 int 和列表,但它不是很有用,并且会掩盖像您在这里一样的错误

我想也许你的意思是在这里使用extend

                    p1.append(p2[0:i])

和这里

                    p2.append(p1[0:i])

而不是append

一些杂项提示(不过,您已经得到了直接问题的答案):

m = randint(0,len(cards))
p1.append(cards[m-1])
del cards[m-1]

你在这里为自己创造工作。random模块中有一个名为 randrange 的方便函数,这意味着您不必担心减去一个(偶然可能意味着如果您得到 0,那么您将拥有 -1,这是列表的最后一个元素,并导致问题(即,您正在修复甲板))...此外,list有一个方便的方法称为pop,它从列表中从某个位置删除元素,因此上述内容可能是:

p1.append(cards.pop(randrange(len(cards))))

但是,由于您正在处理卡片,因此有一个非常恰当的名称方法(同样是随机的),称为shuffle

from random import shuffle
cards = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11 ,12] # * 4
shuffle(cards)
# [3, 4, 11, 9, 6, 2, 12, 5, 8, 1, 10, 7]

使用它,您可以做更少的"手动工作",所以让我们发牌...:

>>> p1hand, p2hand = cards[::2], cards[1::2]
>>> p1hand
[3, 11, 6, 12, 8, 10]
>>> p2hand
[4, 9, 2, 5, 1, 7]

您遇到的问题源自此行(及其变体):

p1.append(p2[0:i])

这样做的作用是将列表中的切片p2附加到p1的末尾。也就是说,它将新列表添加为现有列表的成员。当您尝试在一个列表中的整数和另一个列表中的子列表之间进行比较时,这会导致麻烦。

相反,您希望使用extend,它将切片的成员添加到另一个列表的末尾。

p1.extend(p2[0:i]) # note that the 0 here is not necessary!

这应该可以解决问题。

相关内容

  • 没有找到相关文章

最新更新