""" ------------------------------------------------- Project: Guess The Number Standard: 91883 (AS1.7) v.1 School: Tauranga Boys' College Author: Keelan Bowmar Date: THE DATE YOU COMPLETED THE CODE Python: 3.5 ------------------------------------------------- """ #Imports import random import time #Variables for Game reset_guesses = 0 rounds = 3 user_score = 0 AI_score = 0 round_won = True round = 1 round_guesses = 10 #Game Title/Introduction print("Guess the Number!") time.sleep(1.5) name = input ("What is your name?") time.sleep(1.0) print("Welcome to Guess the Number", name) time.sleep(2.0) print("In this game you will have to guess a number between 1 and 1000!") time.sleep(1.5) print("However this number is randomly generated, meaning that you cannot guess the same number every game!") time.sleep(3.0) print("You will have 10 guesses total per round in order to make the right choice!") time.sleep(1.5) print("Whenever you guess a number you will be told that the generated number is either higher or lower") time.sleep(2.0) print("With all the info given it's time for the game to begin!") time.sleep(1.5) #Game loop begins