""" ------------------------------------------------- Project: Take-Away Game Standard: 91883 (AS1.7) v.1 School: Tauranga Boys' College Author: Keahnu Tai Walters Date: N/A Python: 3.5 ------------------------------------------------- """ import time import random import os,sys,random # Clears the terminal of all previous code def clear(): os.system('cls' if os.name=='nt' else 'clear') # Creates Title Screen def title(): print("") print("██████████████████████████████████████████████████████████████████████████████████████████████████") print("█░░░░░░░░░░░░░░█░░░░░░░░██████░░░░░░░░░░░░░░█░░░░░░░░░░░░░░█░░░░░░██████████░░░░░░█░░░░░░░░░░░░░░█") print("█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀░░██████░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░░░░░░░░░░░░░▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█") print("█░░░░░░░░░░▄▀░░█░░░░▄▀░░██████░░▄▀░░░░░░░░░░█░░▄▀░░░░░░▄▀░░█░░▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░░░░░░░░░█") print("█████████░░▄▀░░███░░▄▀░░██████░░▄▀░░█████████░░▄▀░░██░░▄▀░░█░░▄▀░░░░░░▄▀░░░░░░▄▀░░█░░▄▀░░█████████") print("█░░░░░░░░░░▄▀░░███░░▄▀░░██████░░▄▀░░█████████░░▄▀░░░░░░▄▀░░█░░▄▀░░██░░▄▀░░██░░▄▀░░█░░▄▀░░░░░░░░░░█") print("█░░▄▀▄▀▄▀▄▀▄▀░░███░░▄▀░░██████░░▄▀░░██░░░░░░█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░██░░▄▀░░██░░▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█") print("█░░▄▀░░░░░░░░░░███░░▄▀░░██████░░▄▀░░██░░▄▀░░█░░▄▀░░░░░░▄▀░░█░░▄▀░░██░░░░░░██░░▄▀░░█░░▄▀░░░░░░░░░░█") print("█░░▄▀░░███████████░░▄▀░░██████░░▄▀░░██░░▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀░░██████████░░▄▀░░█░░▄▀░░█████████") print("█░░▄▀░░░░░░░░░░█░░░░▄▀░░░░████░░▄▀░░░░░░▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀░░██████████░░▄▀░░█░░▄▀░░░░░░░░░░█") print("█░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀▄▀▄▀░░████░░▄▀▄▀▄▀▄▀▄▀░░█░░▄▀░░██░░▄▀░░█░░▄▀░░██████████░░▄▀░░█░░▄▀▄▀▄▀▄▀▄▀░░█") print("█░░░░░░░░░░░░░░█░░░░░░░░░░████░░░░░░░░░░░░░░█░░░░░░██░░░░░░█░░░░░░██████████░░░░░░█░░░░░░░░░░░░░░█") print("██████████████████████████████████████████████████████████████████████████████████████████████████") clear() title() MAX_CHIPS = 21 PlayerOneScore = 0 PlayerTwoScore = 0 print(" ") print(" ") Name1 = input("Enter Player One's name: ") Name2 = input("Enter Player Two's name: ") rounds = int(input("Enter the number of rounds: ")) while rounds > 0: chipsLeft = MAX_CHIPS while chipsLeft > 0: print("Chips left:", chipsLeft) player1_chips_taken = int(input(f"{Name1}, choose how many chips to take (1-3): ")) chipsLeft -= player1_chips_taken if chipsLeft < 1: PlayerOneScore += 1 print(f"{Name1} wins this round!") break print("Chips left:", chipsLeft) player2_chips_taken = int(input(f"{Name2}, choose how many chips to take (1-3): ")) chipsLeft -= player2_chips_taken if chipsLeft < 1: PlayerTwoScore += 1 print(f"{Name2} wins this round!") break rounds -= 1 if PlayerOneScore > PlayerTwoScore: print(f"{Name1} wins the game with {PlayerOneScore} round(s) won!") elif PlayerTwoScore > PlayerOneScore: print(f"{Name2} wins the game with {PlayerTwoScore} round(s) won!") else: print("It's a tie!") time.sleep(5) clear()