#------------------------------------------------- #Project: guess the number #Standard: 91883 (AS1.7) v.1 #School: Tauranga Boys' College #Author: Sean Macilwee #Date: THE DATE YOU COMPLETED THE CODE #Python: 3.5 #------------------------------------------------- import random guesses = 10 rounds = 3 number = random.randint(1, 1000) #player name name = input("enter your name here:") print("Hello", name, "it is now time to guess a number")