I'm practicing python and I'm using python 3.5 32-bit and created the "guessing game" program but continue to get a syntax error :
Here's my code-
import randomprint("\tWelcome to 'Guess MY Number'!")print("\n I'm thinking of a number between 1 and 100.")print("Try to guess as little as possible.")the_number = random.randint(1,100)guess= TrueTries = 0while guess !=the_number: guess = (input("Take a guess")) try: guess = int(guess) except VauleError: print("The was not an integer." else: if guess<1 or guess > 100: print("That was not a integer.") elif guess > the_number: print("Lower...") elif guess < the_number: print("Higher...") tries += 1print("You guessed it! The number was", the_number)print("And ou only took", tries,"tries.")