At Westonci.ca, we connect you with the answers you need, thanks to our active and informed community. Discover a wealth of knowledge from professionals across various disciplines on our user-friendly Q&A platform. Get quick and reliable solutions to your questions from a community of experienced experts on our platform.

Set up a python program


Use the randint function to generate 100 3-digit
random numbers and put them in a list.
Then write a guessing routine which keeps guessing
numbers until it guesses one of the numbers in the list.
Count how many guesses it takes.
A
Do not use prepacked functions such as index or find
and do not use the "in" operator. Write a sequential
search that uses a loop and comparison to search for
numbers.