Write a program that first gets a list of integers from input. That list is followed by two more integers representing lower and upper bounds of a range. Your program should output all integers from the list that are within that range (inclusive of the bounds). Ex: If the input is: 25 51 0 200 33 0 50 the output is: 25 0 33 The bounds are 0-50, so 51 and 200 are out of range and thus not output. For coding simplicity, follow each output integer by a space, even the last one. Do not end with newline.
Write a
Ex: If the input is:
25 51 0 200 33 0 50
the output is:
25 0 33
The bounds are 0-50, so 51 and 200 are out of range and thus not output.
For coding simplicity, follow each output integer by a space, even the last one. Do not end with newline.
My Code:
def main():
inputs=[]
num_inputs = int(input('Enter number of inputs: '))
if num_inputs > 9:
print('Too many inputs')
else:
print("Enter", num_inputs," inputs in sorted order: ")
for i in range(num_inputs):
inputs.append(input())
print('The list of integers is: ', inputs)
middle_position=int(num_inputs/2)
print('The middle integer is: ',inputs[middle_position])
if __name__ == "__main__":
main()
This codes output is:
Traceback (most recent call last): File "main.py", line 19, in <module> main() File "main.py", line 4, in main num_inputs = int(input('Enter number of inputs: ')) ValueError: invalid literal for int() with base 10: '25 51 0 200 33'
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 3 images