149k views
0 votes
Write a random question on python usine (while, if, and else)
please chose any topic

User Yarning
by
7.9k points

1 Answer

5 votes

Final answer:

The student's question involves writing a random Python question that utilizes while, if, and else statements. An example provided is a number guessing game where the user tries to guess a random number with feedback after each guess and the ability to exit the program.

Step-by-step explanation:

A student has asked to write a random question on Python using while, if, and else statements. An example of such a question could be related to a simple number guessing game:

Question: 'Write a Python program that generates a random number between 1 and 10 and allows the user to guess the number. The program should give feedback whether the guess is too low, too high, or correct. Use a while loop to allow for multiple guesses until the correct number is guessed. Also, ensure there's an option for the user to exit the program.'

An example of code answering this question could look like this:

import random
guessed = False
number = random.randint(1, 10)
while not guessed:
guess = input('Guess the number (1-10) or type \"exit\" to quit: ')
if guess.lower() == 'exit':
break
guess = int(guess)
if guess < number:
print('Too low!')
elif guess > number:
print('Too high!')
else:
print('Congratulations! You guessed the correct number!')
guessed = True

User Giaour
by
7.6k points