SMASIF

BlackJack (requires more bug fixing)

Oct 5th, 2023
496
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 5.52 KB | Source Code | 0 0
  1. ############### Blackjack Project #####################
  2.  
  3. #Difficulty Normal 😎: Use all Hints below to complete the project.
  4. #Difficulty Hard 🤔: Use only Hints 1, 2, 3 to complete the project.
  5. #Difficulty Extra Hard 😭: Only use Hints 1 & 2 to complete the project.
  6. #Difficulty Expert 🤯: Only use Hint 1 to complete the project.
  7.  
  8. ############### Our Blackjack House Rules #####################
  9.  
  10. ## The deck is unlimited in size.
  11. ## There are no jokers.
  12. ## The Jack/Queen/King all count as 10.
  13. ## The the Ace can count as 11 or 1.
  14. ## Use the following list as the deck of cards:
  15. ## cards = [11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10]
  16. ## The cards in the list have equal probability of being drawn.
  17. ## Cards are not removed from the deck as they are drawn.
  18. ## The computer is the dealer.
  19.  
  20. ##################### Hints #####################
  21.  
  22. #Hint 1: Go to this website and try out the Blackjack game:
  23. #   https://games.washingtonpost.com/games/blackjack/
  24. #Then try out the completed Blackjack project here:
  25. #   http://blackjack-final.appbrewery.repl.run
  26.  
  27. #Hint 2: Read this breakdown of program requirements:
  28. #   http://listmoz.com/view/6h34DJpvJBFVRlZfJvxF
  29. #Then try to create your own flowchart for the program.
  30.  
  31. #Hint 3: Download and read this flow chart I've created:
  32. #   https://drive.google.com/uc?export=download&id=1rDkiHCrhaf9eX7u7yjM1qwSuyEk-rPnt
  33.  
  34. #Hint 4: Create a deal_card() function that uses the List below to *return* a random card.
  35. #11 is the Ace.
  36. import random
  37. import art
  38. import os
  39. cards = [11, 2, 3, 4, 5, 6, 7, 8, 9, 10, 10, 10, 10]
  40. user_cards = []
  41. computer_cards = []
  42. def clear():
  43.     os.system('cls' if os.name=='nt' else 'clear')
  44.  
  45. def startgame():
  46.     opinion = input("Do you want to play a game of Black Jack? Type y or n: ")
  47.     if(opinion.lower() == 'y'):
  48.         user_cards = []
  49.         computer_cards = []
  50.         main()
  51.     else:
  52.         return
  53.  
  54. def deal_card_user():
  55.     user_cards.append(random.choice(cards))
  56.  
  57. def deal_card_computer():
  58.      computer_cards.append(random.choice(cards))
  59.    
  60.     # print(user_cards)
  61.  
  62.  
  63. def calculate_score(cardlist):
  64.     result = 0
  65.     result += sum(cardlist)
  66.     if result == 21:
  67.         return 0
  68.     elif result > 21:
  69.         if 11 in cardlist:
  70.             cardlist.remove(11)
  71.             cardlist.append(1)
  72.         return 0
  73.     else:
  74.         return result
  75.    
  76.  
  77. def calculate_again():
  78.     user_score = calculate_score(user_cards)
  79.     computer_score = calculate_score(computer_cards)
  80.     game_result = compare(user_score, computer_score)
  81.     print(f"Your final hand : {user_cards}")
  82.     print(f"Computer's final hand {computer_cards}")
  83.     print(game_result)
  84.     startgame()
  85.  
  86.    
  87.  
  88. def compare(user_score, computer_score):
  89.     if(user_score == computer_score == 0):
  90.         return "It is a draw."
  91.     elif user_score == 0:
  92.         return "You went over. Computer  win"
  93.     elif(computer_score == 0):
  94.         return "Computer went over. You win"
  95.     else:
  96.         flow = input("Do you want to draw another card? Type 'y' to draw a card, 'n' to cancel.")
  97.         if(flow.lower() == 'y'):
  98.             deal_card_user()
  99.             calculate_again()
  100.         else:
  101.             calculate_again()
  102.  
  103.  
  104. def main():
  105.     clear()
  106.     print(art.logo)
  107.     deal_card_user()
  108.     deal_card_user()
  109.     deal_card_computer()
  110.     deal_card_computer()
  111.     print(f"Your card: {user_cards}")
  112.     print(f"Computer's first card {computer_cards[0]}")
  113.     flow = input("Type 'y' to get another card, type 'n' to pass: ")
  114.     if(flow == 'y'):
  115.         deal_card_user()
  116.         calculate_again()
  117.     else:
  118.         calculate_again()
  119.        
  120.  
  121. startgame()
  122.  
  123.  
  124.  
  125.  
  126.  
  127. #Hint 5: Deal the user and computer 2 cards each using deal_card() and append().
  128. user_cards = []
  129. computer_cards = []
  130.  
  131. #Hint 6: Create a function called calculate_score() that takes a List of cards as input
  132. #and returns the score.
  133. #Look up the sum() function to help you do this.
  134.  
  135.  
  136.  
  137. #Hint 7: Inside calculate_score() check for a blackjack (a hand with only 2 cards: ace + 10) and return 0 instead of the actual score. 0 will represent a blackjack in our game.
  138.  
  139. #Hint 8: Inside calculate_score() check for an 11 (ace). If the score is already over 21, remove the 11 and replace it with a 1. You might need to look up append() and remove().
  140.  
  141. #Hint 9: Call calculate_score(). If the computer or the user has a blackjack (0) or if the user's score is over 21, then the game ends
  142.  
  143.  
  144. #Hint 10: If the game has not ended, ask the user if they want to draw another card. If yes, then use the deal_card() function to add another card to the user_cards List. If no, then the game has ended.
  145.  
  146. #Hint 11: The score will need to be rechecked with every new card drawn and the checks in Hint 9 need to be repeated until the game ends.
  147.  
  148. #Hint 12: Once the user is done, it's time to let the computer play. The computer should keep drawing cards as long as it has a score less than 17.
  149.  
  150. #Hint 13: Create a function called compare() and pass in the user_score and computer_score. If the computer and user both have the same score, then it's a draw. If the computer has a blackjack (0), then the user loses. If the user has a blackjack (0), then the user wins. If the user_score is over 21, then the user loses. If the computer_score is over 21, then the computer loses. If none of the above, then the player with the highest score wins.
  151.  
  152. #Hint 14: Ask the user if they want to restart the game. If they answer yes, clear the console and start a new game of blackjack and show the logo from art.py.
  153.  
Add Comment
Please, Sign In to add comment