162k views
2 votes
Write a script program using a proper loop statement to perform the following tasks:

(1) Per-determine a random integer (rand_int) between [0-9] by the program (hint: use randi() ).
(2) Let the user guess a number (number) entered from the keyboard to be compared with the random integer (rand_int).
(3) If the value of number matches the value of rand_int, the program should display a message ‘Bingo! The guessing is stopped by the program.’ and terminate.
(4) If the two values of number and rand_int are not matched, the program should ask whether the user wants to keep guessing by displaying ‘Wrong guessing... try again?’.
(5) To continue guessing, a character ‘Y’ or ‘y’ should be entered from the keyboard; to stop guessing, a character ‘N’ or ‘n’ should be entered, and display ‘The guessing is stopped by the user.’.

User Manual
by
7.9k points

1 Answer

7 votes

Final answer:

The script generates a random integer using randint(), compares it with user input, and provides feedback on whether the guess is correct or not, and it allows for repeated guessing or termination based on user input.

Step-by-step explanation:

Guess the Number Game Script

Here is a script that fulfills the requirements of your program:

import random

rand_int = random.randint(0, 9)

while True:
number = int(input('Guess a number between 0 and 9: '))
if number == rand_int:
print('Bingo! The guessing is stopped by the program.')
break
else:
print('Wrong guessing... try again?')
continue_guessing = input('(Y/N): ').lower()
if continue_guessing == 'n':
print('The guessing is stopped by the user.')
break

This script uses the randint() function from the random module to pre-determine a random integer between 0 and 9. The user is prompted to guess the number, and the script responds with appropriate messages depending on whether the guess is correct or whether they want to continue guessing.

User TuxSax
by
8.2k points