Write a PYTHON program that first gets integers from user input. The input begins with a threshold value. Then, later subsequent user input values are added to a list until -1 is entered. Finally,...


Write a PYTHON program that first gets integers from user input. The input begins with a threshold value. Then, later subsequent user input values are added to a list until -1 is entered. Finally, output all integers less than or equal to the threshold value.


Example : If the input is:
100
50
60
140
200
75
-1


The output should be:
50
60
75




The 100 specifies that the program should output all integers less than or equal to 100. Next, five integers are added to the list: 50, 60, 140, 200, and 75. Finally, -1 indicates the end of the list.


Write your code to define and use two functions:


get_user_values(nums)
output_ints_less_than_or_equal_to_threshold(nums, threshold)


STARTER CODE (in photo)


main.py<br>1 # Define your get_user_values function here<br>2<br>3<br>4 # Define your output_ints_less_than_or_equal_to_threshold function here<br>6<br>7 if _name_<br>threshold = int(input())<br>'_main_':<br>8<br>nums =<br>10<br>11<br>get_user_values(nums)<br>output_ints_less_than_or_equal_to_threshold(nums, threshold)<br>12<br>

Extracted text: main.py 1 # Define your get_user_values function here 2 3 4 # Define your output_ints_less_than_or_equal_to_threshold function here 6 7 if _name_ threshold = int(input()) '_main_': 8 nums = 10 11 get_user_values(nums) output_ints_less_than_or_equal_to_threshold(nums, threshold) 12

Jun 07, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here