Python junior
1
доработайте игру «guess my number», добавив следующие
функции.
■ улучшите игру так, чтобы после угадывания числа,
выводился номер попытки, которую сделал пользователь для угадывания магического числа.
■ улучшите игру так, чтобы после угадывания числа,
выводилось количество потраченных попыток, которые сделал пользователь для угадывания магического
числа.
from random import randint
print ("in this program you will enter a number between 1 - 100."
"\nafter the computer will try to guess your number! ")
number = 0
while number < 1 or number > 100:
number = int(input("\n\nenter a number for the computer to guess: "))
if number > 100:
print ("number must be lower than or equal to 100! ")
if number < 1:
print ("number must be greater than or equal to 1! ")
guess = randint(1, 100)
print ("the computer takes a ", guess)
while guess ! = number:
if guess > number:
guess -= 1
guess = randint(1, guess)
else:
guess += 1
guess = randint(guess, 100)
print ("the computer takes a ", guess)
print ("the computer guessed", guess, "and it was correct! ")