Question: Write a code in Python that: *Generate a random number from 1 to 10 *Keep asking the user for a number between 1 and 10
Write a code in Python that: *Generate a random number from 1 to 10 *Keep asking the user for a number between 1 and 10 until the user correctly guess the generated number. Hint1: use a while loop Hint2: use the following lines to generate a random integer number from 1 to 10 import numpy as np randint=np.random.randint(1,11)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
