Latest web development tutorials

Python3 List min()方法

Python3 列表 Python3列表


描述

min() 方法返回列表元素中的最小值。

語法

min()方法語法:

min(list)

參數

  • list -- 要返回最小值的列表。

返回值

返回列表元素中的最小值。

實例

以下實例展示了min()函數的使用方法:

#!/usr/bin/python3

list1, list2 = ['Google', 'w3big', 'Taobao'], [456, 700, 200]

print ("list1 最小元素值 : ", min(list1))
print ("list2 最小元素值 : ", min(list2))

以上實例輸出結果如下:

list1 最小元素值 :  Google
list2 最小元素值 :  200

Python3 列表 Python3列表