import randomwinning_conditon = 0
no_of_guesses = 0
comp_guess = random.randint(1,100)while (no_of_guesses == 11) or (winning_conditon == 1):user_guess = int(input("What is your guess? "))if user_guess < 1 or user_guess > 100:print("Your number is invalid!")elif comp_guess == user_guess:print("Well Done!")winning_condition = 1elif comp_guess < user_guess:print("Your number is too high!")elif comp_guess > user_guess:print("Your number is too low!")no_of_guesses = no_of_guesses + 1print(no_of_guesses)
print("You haven't guessed the right amount of times or u won.")
Whenever I start python IDLE (i am using Portable Python 3.2.5.1 (http://portablepython.com/wiki/PortablePython3.2.5.1/)) it comes up with a restart message and then it displays an "=" sign and doesn't continue the program. Do you know a fix?