python找到列表中最大和最小的数

Posted 只是有点小怂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python找到列表中最大和最小的数相关的知识,希望对你有一定的参考价值。

def lookup_min_max(numbers):
	if numbers == []:
		return
	min_num = numbers[0]
	max_num = numbers[0]
	for number in numbers[1:len(numbers)]:
		if number < min_num:
			min_num = number
		elif number > max_num:
			max_num = number
	return min_num,max_num # 元组形式返回

以上是关于python找到列表中最大和最小的数的主要内容,如果未能解决你的问题,请参考以下文章

用python输出最大的数和最小的数,及最大数和最小数的平均值,这个应该怎么做?

在python中找到二维矩阵(二维)中不同列表的最小值、最大值和平均值

python找出列表中最大值

我在 Python 中编写了一个代码来从 5 个元素的数组中找到 4 个元素的最大值和最小值

列表中的 Python 平均值、最大值、最小值

python 求n个数最大值 最小值