Computers and Technology

Given the code that reads a list of integers, complete the number_guess() function, which should choose a random number between 1 and 100 by calling random. randint() and then output if the guessed number is too low, too high, or correct. Import the random module to use the random seed) and random. randint() functions. • random seed(seed_value) seeds the random number generator using the given seed_value. • random. randint(a, b) returns a random number between a and b (inclusive) For testing purposes, use the seed value 900, which will cause the computer to choose the same random number every time the program runs. Ex: If the input is: 32 45 48 80 the output is: 32 is too low. Random number was 80. 45 is too high. Random number was 30. 48 is correct! 80 is too low. Random number was 97. LAB ACTIVIT 6.9.1: LAB: Guess the random number 0/10 | main. py Load default template... 1 # TODO: Import the random module 2 import random 3 def number_guess(num): # TODO: Get a random number between 1-100 # TODO: Read numbers and compare to random number _name__ == "_main_": # Use the seed 900 to get the same pseudo random numbers every time random. seed(900) # Convert the string tokens into integers user_input = input) tokens = user_input. split() for token in tokens: num = int(token) number_guess(num)

answer
Answers: 3

Other questions on the subject: Computers and Technology

image
Computers and Technology, 22.06.2019 07:30, DivineMemes420
What type of computer network ensures high security ?
Answers: 1
image
Computers and Technology, 22.06.2019 18:30, ovoxotas
Which of the following commands is more recommended while creating a bot?
Answers: 1
image
Computers and Technology, 24.06.2019 03:30, live4dramaoy0yf9
Explain the importance of html in web page designing in 20 sentences..
Answers: 1
image
Computers and Technology, 24.06.2019 12:00, tipbri6380
An npn transistor is correctly biased and turned on if the a. base is negative. b. collector is negative. c. collector is positive with respect to the emitter and negative with respect to the base. d. collector is the most positive lead followed by the base.
Answers: 1
Do you know the correct answer?
Given the code that reads a list of integers, complete the number_guess() function, which should cho...

Questions in other subjects:

Konu
Mathematics, 11.11.2020 07:20
Konu
Mathematics, 11.11.2020 07:20