这是一个非常奇怪的错误,我不知道发生了什么。基本上我的代码是最重要的,它还没有完全完成,但无论如何。对于那些玩过顶级王牌的人,我的代码模拟了两只手之间的牌传递。但是,如果您查看if len(Your_Hand)== 0:
我使用 len() 打印这些手的长度的第 129 行 (),它们不会相加。即 len() 表示读取列表时显然不正确的长度?
谢谢,如果您能看一下并尝试帮助我了解正在发生的事情,那将是很棒的!
这是我的代码:
#top trumps stuff
import random
import time
pack = [("harry Potter",2,3,4,5),
("Hermione Granger", 5,6,7,8),
("Ron Weasley", 12, 13,4,5),
("Neville Longbottom", 1,1,1,1),
("Ginny Weasley",2,3,4,5),
("Draco Malfoy",3,6,7,8) ]
pile_1 = []
pile_2 = []
clash_pile = []
Your_Hand = 0
Opponent_Hand = 0
end_loop=0
catagory_exchange = {"brains":0,
"knowledge": 1 ,
"cunning": 2,
"evil":3}
choice = 0
acceptable_answers = catagory_exchange.keys()
proceed = 0
clash = 0
end_game = 0
#Shuffles the pack
random.shuffle(pack)
# Deals the cards
Dealer_count =0
while Dealer_count <len(pack):
pile_1.append(pack[0])
pack.remove(pack[0])
pile_2.append(pack[0])
pack.remove(pack[0])
#Asks Which pile they'd like
Which_Pile = raw_input(">> Which Pile would you like 1 or 2?")
while end_loop != 1:
if Which_Pile == "1":
Your_Hand = pile_1
Opponent_Hand = pile_2
print "Lets now start!"
end_loop = 1
elif Which_Pile == "2":
Your_Hand = pile_2
Opponent_Hand = pile_1
print "Lets now start!"
end_loop = 1
else:
Which_Pile = raw_input("You didn't pick 1 or 2! Pick again!!")
while end_game != 1:
print len(Your_Hand)
print Your_Hand
print len(Opponent_Hand)
print Opponent_Hand
print Your_Hand[0]
choice = raw_input(">> choose a catagory, brains, knowledge, cunning, evil - ")
if choice in acceptable_answers:
proceed = 1
else:
print "Thats not an catagory"
if proceed == 1:
if Your_Hand[0][catagory_exchange[choice]] > Opponent_Hand[0][catagory_exchange[choice]]:
if clash == 1:
print "You won the cards from previous rounds aswell!!"
clash = 0
clash_pile[:] = []
else:
print "You won the card you received %s" % Opponent_Hand[0][0]
Your_Hand.append(Opponent_Hand[0])
Your_Hand.append(clash_pile)
Opponent_Hand.remove(Opponent_Hand[0])
Your_Hand.append(Your_Hand[0])
Your_Hand.remove(Your_Hand[0])
elif Your_Hand[0][catagory_exchange[choice]] < Opponent_Hand[0][catagory_exchange[choice]]:
if clash ==1:
print "You lost the cards from previous rounds aswell"
clash = 0
clash_pile[:] = []
else:
print "You lost the card"
Opponent_Hand.append(Your_Hand[0])
Your_Hand.append(clash_pile)
Your_Hand.remove(Your_Hand[0])
Opponent_Hand.append(Opponent_Hand[0])
Opponent_Hand.remove(Opponent_Hand[0])
if Your_Hand[0][catagory_exchange[choice]] == Opponent_Hand[0][catagory_exchange[choice]]:
clash =1
print "They both have the same value"
print "They have been added to a pile which you will win when you win the next round"
clash_pile.append(Your_Hand[0])
clash_pile.append(Opponent_Hand[0])
Opponent_Hand.remove(Opponent_Hand[0])
Your_Hand.remove(Your_Hand[0])
if len(Your_Hand)== 0:
print "Oh no! You have run out of cards! You lose!!"
if len(Opponent_Hand)==0:
print "Well done! Your opponent has run out of cards! You win!!"