207k views
0 votes
Chrome-extension://noonteger num guesses is read from input, representing the number of integers to be read next from input. Write a loop that iterates num guesses times. In each iteration, read an integer from input and append the integer to user guesses. Ex: If the input is: 3 9 5 2 then the output is: user guesses: [9, 5, 2]. Note: Remember to correctly close all parentheses.

User MJ Montes
by
7.6k points

1 Answer

1 vote

Final answer:

To solve this problem, you can use a loop to iterate the number of times specified by num guesses. Within each iteration, you can read an integer from the input and append it to the user guesses.

Step-by-step explanation:

To solve this problem, you can use a loop to iterate the number of times specified by num guesses. Within each iteration, you can read an integer from the input and append it to the user guesses. Here is an example in Python:

num_guesses = int(input())
user_guesses = []

for i in range(num_guesses):
guess = int(input())
user_guesses.append(guess)

print('user guesses:', user_guesses)

In this code, the range() function is used to generate the sequence of numbers to iterate over, and the append() method is used to add each integer to the user_guesses list.

User Wally
by
7.3k points