Вопрос задан 15.11.2023 в 06:56. Предмет Информатика. Спрашивает Могила Андрей.

Створіть програму, містить перелік ваших улюблених речей. Після запуску у користувача має бути три

спроби, щоб вгадати .
0 0
Перейти к ответам

Ответы на вопрос

Внимание! Ответы на вопросы дают живые люди. Они могут содержать ошибочную информацию, заблуждения, а также ответы могут быть сгенерированы нейросетями. Будьте внимательны. Если вы уверены, что ответ неверный, нажмите кнопку "Пожаловаться" под ответом.
Отвечает Осадченко Денис.

Решение:

Python

verniy = 'мороженное'

reshenie = []

i = 0

while True:

   i = i + 1

   otvet = input('Ваш вариант: ')

   reshenie.append(otvet)

   if otvet != verniy:

       print('Ответ невеный!')

   if otvet == verniy:

       print('Ответ верный!')

       break

   elif otvet == verniy and i == 3:

       print('Ответ верный!')

       break

   elif i == 3:

       print('У вас закончились шансы!')

       break

print('Список ответов: ', reshenie)

0 0
Отвечает нейросеть ChatGpt. Будьте внимательны, ответы нейросети могут содержать ошибочные или выдуманные данные.

The user's message is in Ukrainian, which is a language that I can understand and communicate fluently. The user is asking me to answer in detail and create a program that contains a list of their favorite things. After running, the user should have three attempts to guess one of them.

Here is a possible answer and a program in Python that I have created for this task:

Answer: To create a program that contains a list of your favorite things, you need to use some basic concepts of Python, such as variables, lists, loops, and conditional statements. A variable is a name that refers to a value, such as a number or a string. A list is a collection of values that can be accessed by their index. A loop is a way of repeating a block of code for a certain number of times or until a condition is met. A conditional statement is a way of checking if a condition is true or false and executing different blocks of code accordingly.

Program:

# Define a list of your favorite things favorites = ["chocolate", "pizza", "books", "music", "cats"]

# Define a variable to store the number of attempts attempts = 3

# Define a variable to store the correct answer answer = "books"

# Use a while loop to repeat the game until the user runs out of attempts or guesses correctly while attempts > 0: # Ask the user to enter a guess guess = input("Guess one of my favorite things: ")

# Check if the guess is correct if guess == answer: # Congratulate the user and end the loop print("You guessed it! Well done!") break else: # Tell the user they are wrong and reduce the number of attempts by one print("Sorry, that's not it.") attempts -= 1

# Check if the user ran out of attempts if attempts == 0: # Tell the user they lost and reveal the answer print("You ran out of attempts. The correct answer was", answer)

0 0

Похожие вопросы

Топ вопросов за вчера в категории Информатика

Последние заданные вопросы в категории Информатика

Задать вопрос