Ask Your Question
3

What is a way to restrict the amount of input numbers?

asked 2022-09-05 11:00:00 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-03-30 21:00:00 +0000

ladyg gravatar image

One way to restrict the amount of input numbers is to use a loop with a counter. The loop will continue to prompt the user for input until the counter reaches a set limit. For example, in Python:

count = 0
limit = 5
numbers = []

while count < limit:
    num = input("Enter a number: ")
    numbers.append(num)
    count += 1

print(numbers)

This code prompts the user to enter a number five times and appends each input to a list. The loop stops after the fifth input.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-09-05 11:00:00 +0000

Seen: 7 times

Last updated: Mar 30 '22