display_larger - should accept the 2 parameters from main. Using a loop, the function should compare all numbers in the list of number from the user to n. If the number is larger than n, it should be stored in a second list containing only the numbers that are greater than n. A third list with those less than n should also be made and printed out. The lists should be sorted and then printed, as well. Sorted lists should be done in ascending order and then is descending order.

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter7: Arrays
Section7.5: Case Studies
Problem 3E
icon
Related questions
Question

i need to add the loop with the lists to my code can you help. see code and the part that i need to add.

#Defining display_larger function which accepts 2 parameter from main
def display_larger(number_list,n):
#Empty list 2 to store the numbers which are greater than search number
number_list2 = []
#Printing number that will be a search number
print("Number: ",n)
print("List of numbers:")
#Printing list of all 10 numbers which are accepted from user
print(number_list)
for i in number_list:
if i>n:
#appending numbers which are greater than search number to list 2
number_list2.append(i)
print("List of numbers that are larger than ",n,":")
#Printing list of numbers that are greater than search number
print(number_list2)
#Defining Main function wich accepts input of series of 10 integers and integer n that will be
a search number
def main():
#Empty list
number_list = []
print("Enter a list of 10 integers")
for i in range(0, 10):
#Accepting 10 integer from user
number = int(input("Enter a number: "))
#Appending to empty list
number_list.append(number)
#Accepting integer n that will be a search number
n=int(input("Enter the number you wish to test if the list elements are greater than: "))
display_larger(number_list,n)
Transcribed Image Text:#Defining display_larger function which accepts 2 parameter from main def display_larger(number_list,n): #Empty list 2 to store the numbers which are greater than search number number_list2 = [] #Printing number that will be a search number print("Number: ",n) print("List of numbers:") #Printing list of all 10 numbers which are accepted from user print(number_list) for i in number_list: if i>n: #appending numbers which are greater than search number to list 2 number_list2.append(i) print("List of numbers that are larger than ",n,":") #Printing list of numbers that are greater than search number print(number_list2) #Defining Main function wich accepts input of series of 10 integers and integer n that will be a search number def main(): #Empty list number_list = [] print("Enter a list of 10 integers") for i in range(0, 10): #Accepting 10 integer from user number = int(input("Enter a number: ")) #Appending to empty list number_list.append(number) #Accepting integer n that will be a search number n=int(input("Enter the number you wish to test if the list elements are greater than: ")) display_larger(number_list,n)
display_larger - should accept the 2 parameters from main. Using a loop, the function should
compare all numbers in the list of number from the user to n. If the number is larger than n, it should
be stored in a second list containing only the numbers that are greater than n. A third list with those
less than n should also be made and printed out. The lists should be sorted and then printed, as well.
Sorted lists should be done in ascending order and then is descending order.
Transcribed Image Text:display_larger - should accept the 2 parameters from main. Using a loop, the function should compare all numbers in the list of number from the user to n. If the number is larger than n, it should be stored in a second list containing only the numbers that are greater than n. A third list with those less than n should also be made and printed out. The lists should be sorted and then printed, as well. Sorted lists should be done in ascending order and then is descending order.
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 2 images

Blurred answer
Knowledge Booster
Operations of Linked List
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr