Write a simple number guessing game, give the user 3 tries to guess a number between 1 and 10

The python code for this is below:

from random import randint

goal = randint(1,10) tries = 3

while tries > 0:     guess = int(input("Please guess the number:"))     if guess == goal:         print("Congratulations you won!")         break     else:         tries-=1         print("Incorrect! %d tries left!"%tries)

Related Python Mentoring answers

All answers ▸

What is the difference between a for loop and a while loop.


How can you take a list of numbers and add 3 to every number in the list using only one line of code?


Given a list of N numbers, use a single list comprehension to produce a new list that only contains those values that are: (a) even numbers, and (b) from elements in the original list that had even indices .


Write a Python script to take a product name as input and then automatically google search reviews for it and open the top 3 search results in different tabs