Python Programming an OldMaid Card Game python

Click For Summary
The discussion revolves around a coding issue in a game of Old Maid, specifically the difficulty in removing pairs of cards from a player's hand. The provided code outlines the creation of a deck, shuffling, dealing cards, and a function to remove pairs. Modifications were made to the code for clarity, including changing array index variables from 'i' to 'j' to prevent formatting issues. Participants suggest using a debugger to identify problems within the `remove_pairs` function, emphasizing the need for clearer variable naming beyond single letters. Additional resources on Python debugging techniques were shared to assist in troubleshooting.
garr6120
Messages
42
Reaction score
0
I am having trouble removing the same cards from my hand in my game of oldMaid. this is my source:
Mod note: Added code tags to preserve indentation, and modified code slightly (replacing index i in arrays with j.
Python:
    deck=[]
    suits = ['\u2660', '\u2661', '\u2662', '\u2663']
    ranks = ['2','3','4','5','6','7','8','9','10','J','Q','K','A']
    for suit in suits:
        for rank in ranks:
            deck.append(rank+suit)
    deck.remove('Q\u2663') # remove a queen as the game requires
    return deck

def shuffle_deck(deck):
    '''(list of str)->None
       Shuffles the given list of strings representing the playing deck  
    '''
    random.shuffle(deck)

#####################################

def deal_cards(deck):

    dealer=[]
    other=[]

    half=len(deck)//2
    for j in range(half):
        dealer.append(deck[j])

    for j in range(half,len(deck)):
        other.append(deck[j])
      
    return (dealer, other)
          
def remove_pairs(l):

    no_pairs=[]
  
    for j in range(1,len(l)):
        if l[j-1][0]!=l[j][0]:
            no_pairs.append(l[j])
          
    random.shuffle(no_pairs)
    return no_pairs

def play_game():
     '''()->None
     This function plays the game'''
  
     deck=make_deck()
     shuffle_deck(deck)
     tmp=deal_cards(deck)

     dealer=tmp[0]
     human=tmp[1]

     print("Hello. My name is Robot and I am the dealer.")
     print("Welcome to my card game!")
     print("Your current deck of cards is:")
     print_deck(human)
     print("Do not worry. I cannot see the order of your cards")

     print("Now discard all the pairs from your deck. I will do the same.")
     wait_for_player()
    
     dealer=remove_pairs(dealer)
     human=remove_pairs(human)
  
# main
play_game()
 
Last edited by a moderator:
Technology news on Phys.org
garr6120 said:
I am having trouble removing the same cards from my hand in my game of oldMaid. this is my source:
Mod note: Added code tags to preserve indentation, and modified code slightly (replacing index i in arrays with j.
Python:
    deck=[]
    suits = ['\u2660', '\u2661', '\u2662', '\u2663']
    ranks = ['2','3','4','5','6','7','8','9','10','J','Q','K','A']
    for suit in suits:
        for rank in ranks:
            deck.append(rank+suit)
    deck.remove('Q\u2663') # remove a queen as the game requires
    return deck

def shuffle_deck(deck):
    '''(list of str)->None
       Shuffles the given list of strings representing the playing deck
    '''
    random.shuffle(deck)

#####################################

def deal_cards(deck):

    dealer=[]
    other=[]

    half=len(deck)//2
    for j in range(half):
        dealer.append(deck[j])

    for j in range(half,len(deck)):
        other.append(deck[j])
   
    return (dealer, other)
       
def remove_pairs(l):

    no_pairs=[]
 
    for j in range(1,len(l)):
        if l[j-1][0]!=l[j][0]:
            no_pairs.append(l[j])
       
    random.shuffle(no_pairs)
    return no_pairs

def play_game():
     '''()->None
     This function plays the game'''
 
     deck=make_deck()
     shuffle_deck(deck)
     tmp=deal_cards(deck)

     dealer=tmp[0]
     human=tmp[1]

     print("Hello. My name is Robot and I am the dealer.")
     print("Welcome to my card game!")
     print("Your current deck of cards is:")
     print_deck(human)
     print("Do not worry. I cannot see the order of your cards")

     print("Now discard all the pairs from your deck. I will do the same.")
     wait_for_player()
 
     dealer=remove_pairs(dealer)
     human=remove_pairs(human)
 
# main
play_game()
In the future, please use code tags, especially with Python code, where indentation is crucial.

What I did was add tags like this:
Python:
<Some Python code>
I also modified your code slightly, replacing array indexes of i with j. The reason for this is that our system thinks that arr means that it should display arr, and then start displaying in italics.

Regarding your question, please give more details. Where in the code are you seeing the problem?

Also, single-letter variables are OK for loop control variables, but not OK for any other purpose. In your remove_pairs() function, what does l (letter el) represent?
 
  • Like
Likes jedishrfu
Suggestion: use a debugger or add a command so that, at the beginning of remove_pairs, you can see the cards you passed in.
 
  • Like
Likes jedishrfu
  • Like
Likes jedishrfu
Learn If you want to write code for Python Machine learning, AI Statistics/data analysis Scientific research Web application servers Some microcontrollers JavaScript/Node JS/TypeScript Web sites Web application servers C# Games (Unity) Consumer applications (Windows) Business applications C++ Games (Unreal Engine) Operating systems, device drivers Microcontrollers/embedded systems Consumer applications (Linux) Some more tips: Do not learn C++ (or any other dialect of C) as a...

Similar threads

  • · Replies 22 ·
Replies
22
Views
6K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 34 ·
2
Replies
34
Views
5K
Replies
31
Views
6K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 11 ·
Replies
11
Views
3K
  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 3 ·
Replies
3
Views
5K
  • · Replies 11 ·
Replies
11
Views
2K