हिंदी

Write a function to return the second largest number from a list of numbers. - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

Write a function to return the second largest number from a list of numbers.

संक्षेप में उत्तर

उत्तर

Program:
def secLargestNum(list1):
    #Sorting the list in ascending order
    list1.sort()
    
    #Returning the second last index of list1
    #List with negative indexing will start from the end in reverse order with -1 as the index of the last element
    secondLast = list1[-2]
    
    
    #or len(list1)-2 can be used which will return second last element
    ​#secondLast = list1[len(list1)-2]
    return secondLast

list1 = [1, 2, 3, 4, 5, 6, 7, 8, 9]

#Using secLargestNum function to get the function   
sec_num = secLargestNum(list1)

#Printing all the elements for the list
print("The elements of the list",list1)

#Printing the second largest num 
print("\nThe second-largest number of the list:",sec_num)

OUTPUT:
The elements of the list [1, 2, 3, 4, 5, 6, 7, 8, 9]

The second-largest number of the list: 8
shaalaa.com
List Methods and Built-in Functions
  क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
अध्याय 9: Lists - Exercise [पृष्ठ २०६]

APPEARS IN

एनसीईआरटी Computer Science [English] Class 11
अध्याय 9 Lists
Exercise | Q 4. | पृष्ठ २०६
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×