尝试制作口袋妖怪游戏时,List.remove()x不在列表中

时间:2018-04-16 05:06:56

标签: python

虽然该行现在是多余的,但是在运行几次迭代时,应该从原始列表中删除self.y的行引发了' Valueerror:list.remove(x)x不在列表中。我现在无法弄清楚我在这里做错了什么。

from random import sample, choice


class Selection(object):


    def __init__(self):

        self.pokemon_list = [
            'Blastoise', 'Charizard', 'Venasaur',   
            'Artiquno', 'Moltress', 'Zapdos', 
        ]

        self.x = sample(self.pokemon_list, 3)

        print """
    CONGRATULATIONS TRAINER, YOU HAVE BEEN GIVEN %s,
    YOUR JOURNEY BEGINS NOW! PROCEED WISELY OR DIE.
    """ % (self.x)


    def gary_pok(self):

        for self.z in self.x:

            if self.z == "Blastoise":
                self.y = 'Venasaur'
                **self.pokemon_list.remove(self.y)
                print self.pokemon_list**
            elif self.z == "Charizard":
                self.y = 'Blastoise'
                print self.pokemon_list.remove(self.y)
            elif self.z == "Venasaur":
                self.y = 'Charizard'
                print self.pokemon_list.remove(self.y)
            else:
                self.y = choice(self.pokemon_list)
                print self.pokemon_list.remove(self.y)

        print "Gary's pokemons:{}, Nidoqueen and Archanine.".format(self.y)

bah = Selection()
bah.gary_pok()      

1 个答案:

答案 0 :(得分:-2)

循环播放时,无法从列表中删除项目。 因为,当第一次发生循环时它会落到你的状态,它将从你的列表中删除项目,当循环进行第二次迭代时,它想要删除已被删除的项目。

enter image description here

打印Artiquioni后,Charizard被移除,然后在下一次迭代中,Charizard不在列表中