共计 339 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用内置函数 max()
来找到数组中的最大值。
以下是一个示例:
# 定义一个数组
arr = [2, 5, 1, 9, 10]
# 使用 max()函数找到数组中的最大值
max_value = max(arr)
# 打印最大值
print("数组中的最大值为:", max_value)
输出:
数组中的最大值为: 10
另外,如果数组中的元素是字符串类型,也可以使用 max()
函数来找到最大值。例如:
# 定义一个包含字符串的数组
arr = ['apple', 'banana', 'orange']
# 使用 max()函数找到数组中的最大值
max_value = max(arr)
# 打印最大值
print("数组中的最大值为:", max_value)
输出:
数组中的最大值为: orange
丸趣 TV 网 – 提供最优质的资源集合!
正文完