Python 求数组的最小值和最大值
在 Python 中,我们可以使用内置的 min()
和 max()
函数来轻松找到数组中的最小值和最大值。下面是一个简单的示例代码:
实例
# 定义一个数组
numbers = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5]
# 使用 min() 函数找到最小值
min_value = min(numbers)
# 使用 max() 函数找到最大值
max_value = max(numbers)
# 输出结果
print(f"数组中的最小值是: {min_value}")
print(f"数组中的最大值是: {max_value}")
numbers = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5]
# 使用 min() 函数找到最小值
min_value = min(numbers)
# 使用 max() 函数找到最大值
max_value = max(numbers)
# 输出结果
print(f"数组中的最小值是: {min_value}")
print(f"数组中的最大值是: {max_value}")
代码解析:
numbers = [3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5]
:定义一个包含多个整数的数组。min_value = min(numbers)
:使用min()
函数找到数组中的最小值,并将其赋值给min_value
。max_value = max(numbers)
:使用max()
函数找到数组中的最大值,并将其赋值给max_value
。print(f"数组中的最小值是: {min_value}")
:输出数组中的最小值。print(f"数组中的最大值是: {max_value}")
:输出数组中的最大值。
输出结果:
数组中的最小值是: 1 数组中的最大值是: 9
这个代码可以轻松地找到数组中的最小值和最大值,并且适用于任何包含可比较元素的数组。
点我分享笔记