📜  python scond max 函数 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:38.393000             🧑  作者: Mango

代码示例1
#program to find the second largest number of list  
# declaring the list  
list_val = [20, 30, 40, 25, 10]  
# sorting the list  
list_val.sort()  
#displaying the second last element of the list  
print("The second largest element of the list is:", list_val[-2])