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.