""" ------------------------------------------------- Project: Take-Away Game Standard: 91883 (AS1.7) v.1 School: Tauranga Boys' College Author: Tyler Jewell Date: 4/3/2025 Python: 3.5 """ import random target_number = random.randint(1,1000) print("Whats your name?") Name = input() print("Hello", Name) print("it is now time to guess a number, You get as many guesses as you need") while True: print("Whats your guess?") guess = int(input()) if guess >= target_number: print("Lower") elif guess <= target_number: print("Higher") else: print("Your guess must be within 1-1000") continue if guess == target_number: print("Congratulations") else: print("Try again")