Write a Python Program to Find the Second Largest Number in a List
Topic: Write a Python Program to Find the Second Largest Number in a List
Solution
a= [11,22,33,44,55,66,77,88,99] a.sort() print("Second largest element is:",a[n-2])
List all Python Programs