""" ------------------------------------------------- Project: Guess the number Game Standard: 91883 (AS1.7) v.1 School: Tauranga Boys' College Author: Kyree Rikiti Edmonds Date: 3/03/2025 Python: 3.5 ------------------------------------------------- """ import random import time # Variables reset_guesses = 0 rounds = 3 player_score = 0 computerAI_score = 0 round_won = True round = 1 # Game title and asking for players name print( "-----------------------------" ) print() print( "Welcome to Guess The Number!" ) time.sleep(3) name = input( "What is your name? " ) time.sleep(1) print( "Welcome", name, "to Guess The Number!" ) print() print( "---------------------------------------" ) time.sleep(4) print() print( "These are the rules of the game:" ) time.sleep(2.5) print( "You will be guessing a number between 1 - 1000" ) time.sleep(2.5) print( "You will be competing against the computer AI" ) time.sleep(4.5) print( "You will be playing 3 rounds" ) time.sleep(3) print( "Each round consists of 10 guesses to try and guess the random number" ) time.sleep(6) print( "The first player to win 2 out of the 3 rounds wins" )