实现函数get_max,函数最终返回列表lst的最大值(lst = [4, 2, 1, 6, 7, 9]),不要使用max函数
时间: 2023-07-29 11:05:39 浏览: 173
python求最大值,不使用内置函数的实现方法
可以使用循环遍历列表,依次比较每个元素,找到最大值:
```
def get_max(lst):
max_num = lst[0]
for num in lst:
if num > max_num:
max_num = num
return max_num
lst = [4, 2, 1, 6, 7, 9]
print(get_max(lst)) # 输出 9
```
阅读全文