Welcome to Westonci.ca, where curiosity meets expertise. Ask any question and receive fast, accurate answers from our knowledgeable community. Get quick and reliable solutions to your questions from a community of experienced professionals on our platform. Connect with a community of professionals ready to help you find accurate solutions to your questions quickly and efficiently.

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.