无法在 Python 中从 Euchre 手中取出卡



我正在尝试在python中编程卡游戏Euchre,并且我遇到了一些错误。我将在下面发布我的代码,然后解释我当前的问题:

import random
class Card(object):
    '''defines card class'''
    RANK=['9','10','J','Q','K','A']      #list of ranks & suits to make cards
    SUIT=['c','s','d','h']
    def __init__(self,rank,suit):
        self.rank=rank
        self.suit=suit
    def __str__(self):
        rep=self.rank+self.suit
        return rep
    #Next four definitions haven't been used yet. Goal was to use these
    #to define a numerical vaule to each card to determine which one wins the trick        
    def getSuit(self):
        return self.suit
    def value(self):
        v=Card.RANK.index(self.rank)
        return v
    def getValue(self):
        print(self.value)
    def changeValue(self,newValue):
        self.value=newValue
        return self.value
class Hand(object):
    def __init__(self):
        self.cards=[]
    def __str__(self):
        if self.cards:
            rep=''
            for card in self.cards:
                rep+=str(card)+'t'
        else:
            rep="EMPTY"
        return rep
    def clear(self):
        self.cards=[]
    def add(self,card):
        self.cards.append(card)
    def give(self,card,other_hand):
        self.cards.remove(card)
        other_hand.add(card)
    def remove(self,card):
        self.cards.remove(card)
class Deck(Hand):
    def populate(self):
        for suit in Card.SUIT:
            for rank in Card.RANK:
                self.add(Card(rank,suit))
    def shuffle(self):
        random.shuffle(self.cards)
    def reshuffle(self):
        self.clear()
        self.populate()
        self.shuffle()
    def deal(self,hands,hand_size=1):
        for rounds in range(hand_size):
            for hand in hands:
                if self.cards:
                    top_card=self.cards[0]
                    self.give(top_card,hand)
                else:
                    print("Out of cards.")
#These two are the total scores of each team, they haven't been used yet
player_score=0
opponent_score=0
#These keep track of the number of tricks each team has won in a round
player_tricks=0
opponent_tricks=0
deck1=Deck()
#defines the hands of each player to have cards dealt to
player_hand=Hand()
partner_hand=Hand()
opp1_hand=Hand()
opp2_hand=Hand()
trump_card=Hand()      #This is displayed as the current trump that players bid on
played_cards=Hand()    #Not used yet. Was trying to have played cards removed from
                  #their current hand and placed into this one in an attempt to
                  #prevent  playing the same card more than once. Haven't had
                  #success with this yet
hands=[player_hand,opp1_hand,partner_hand,opp2_hand]
deck1.populate()
deck1.shuffle()
print("nPrinting the deck: ")
print(deck1)
deck1.deal(hands,hand_size=5)
deck1.give(deck1.cards[0],trump_card)
def redeal():      #just to make redealing cards easier after each round
    player_hand.clear()
    partner_hand.clear()
    opp1_hand.clear()
    opp2_hand.clear()
    trump_card.clear()
    deck1.reshuffle()
    deck1.deal(hands,hand_size=5)
    deck1.give(deck1.cards[0],trump_card)
print("nPrinting the current trump card: ")
print(trump_card)
while player_tricks+opponent_tricks<5:
#Converts players hand into a list that can have its elements removed
Player_hand=[str(player_hand.cards[0]),str(player_hand.cards[1]),str(player_hand.cards[2]),
str(player_hand.cards[3]),str(player_hand.cards[4])]

print("nYour hand: ")
print(Player_hand)
played_card=str(raw_input("What card will you play?: "))#converts input into a string
if played_card==Player_hand[0]:         #crudely trying to remove the selected card
    Player_hand.remove(Player_hand[0])  #from player's hand
if played_card==Player_hand[1]:
    Player_hand.remove(Player_hand[1])
if played_card==Player_hand[2]:
    Player_hand.remove(Player_hand[2])
if played_card==Player_hand[3]:
    Player_hand.remove(Player_hand[3])
if played_card==Player_hand[4]:         #received the 'list index out of range' error
    Player_hand.remove(Player_hand[4])  #here. Don't know why this is an error since
                                        #Player_hand has 5 elements in it.
opp1_card=opp1_hand.cards[0]  #just having a card chosen to see if the game works
                              #will fix later so that they select the best card
                              #to play

partner_card=partner_hand.cards[0]

opp2_card=opp2_hand.cards[0]

print("First opponent plays: ")
print(opp1_card)
print("Your partner plays: ")
print(partner_card)
print("Second opponent plays: ")
print(opp2_card)
trick_won=[0,1]   #Just used to randomly decide who wins trick to make sure score is
                  #kept correctly
Trick_won=random.choice(trick_won)
if Trick_won==0:
    print("nYou win the trick!")
    player_tricks+=1
if Trick_won==1:
    print("nOpponent wins the trick!")
    opponent_tricks+=1
if player_tricks>opponent_tricks:
print("nYou win the round!")
if opponent_tricks>player_tricks:
print("nOpponont wins the round!")
print("nGOOD GAME") #Just to check that game breaks loop once someone wins the round

到目前为止,我能够完成的是创建一个甲板,而四个球员中的每一个都被拿走了五张牌,然后让玩家询问他们想要玩什么卡。一旦他们玩了一张卡片,其他三名球员(两个对手和一个伴侣)演奏他们的卡片,然后我随机决定谁赢得了"技巧",只是看得分是否正确。

我要解决的当前问题是,一旦玩家播放一张卡并播放了窍门,在下一个技巧上,他们在显示时应该少一张卡片,但我无法删除以前播放的卡片,以便播放器手里拿着五张卡。

你们中有人知道我在做什么错,以及如何删除选定的卡吗?感谢您的任何帮助。

您得到的IndexError是因为您使用了多个if S而不是elif

if played_card==Player_hand[0]:
    Player_hand.remove(Player_hand[0])
# The next if is still evaluated, with the shortened Player_hand
if played_card==Player_hand[1]:
    Player_hand.remove(Player_hand[1])

使用:

if played_card==Player_hand[0]:
    Player_hand.remove(Player_hand[0])
elif played_card==Player_hand[1]:
    Player_hand.remove(Player_hand[1])

是的,使用您完成的那些类,然后使用__eq__进行比较。

相关内容

  • 没有找到相关文章

最新更新