Programming an OldMaid Card Game python

In summary, an OldMaid Card Game is a popular card game that involves getting rid of cards and avoiding the "Old Maid" card. To program it in Python, you will need to use programming concepts and data structures, and there are resources available online to help. You can customize the rules and add AI players to the game, and it is also possible to create a GUI using libraries like Tkinter or Pygame.
  • #1
garr6120
42
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
  • #2
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:
[code=python]
<Some Python code>
[/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[i] 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
  • #3
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
  • #4
  • Like
Likes jedishrfu

1. What is a OldMaid Card Game?

An OldMaid Card Game is a popular card game that involves players trying to get rid of all the cards in their hands. The goal is to avoid being left with the "Old Maid" card, which is typically the Queen of Spades. It is often played with a standard deck of cards, but can also be played with specialized decks.

2. How do I program an OldMaid Card Game in Python?

To program an OldMaid Card Game in Python, you will need to use a combination of programming concepts such as loops, conditional statements, and functions. You will also need to have a good understanding of data structures, such as lists and dictionaries, to keep track of the cards and players. There are many tutorials and resources available online to help guide you through the process.

3. Can I customize the rules and gameplay of the OldMaid Card Game?

Yes, you can definitely customize the rules and gameplay of the OldMaid Card Game in your Python program. You can change the number of players, the number of cards dealt, and even add your own variations to the game. This is one of the great things about programming your own version of the game.

4. Can I add AI players to the OldMaid Card Game?

Yes, you can add AI players to the OldMaid Card Game in your Python program. This will require a more advanced understanding of programming and algorithms, but it is definitely possible. You can create AI players with different levels of difficulty to make the game more challenging.

5. Is it possible to make a graphical user interface (GUI) for the OldMaid Card Game in Python?

Yes, you can create a GUI for the OldMaid Card Game in Python using libraries such as Tkinter or Pygame. This will allow you to create a more user-friendly and visually appealing version of the game. However, it will require some additional knowledge and skills in GUI programming.

Similar threads

  • Calculus and Beyond Homework Help
Replies
31
Views
3K
  • Programming and Computer Science
Replies
3
Views
5K
  • Engineering and Comp Sci Homework Help
Replies
10
Views
1K
  • Programming and Computer Science
Replies
4
Views
6K
  • Engineering and Comp Sci Homework Help
Replies
2
Views
2K
  • General Discussion
Replies
4
Views
4K
Back
Top