1.求列表最大值 def get_ max(Ist): t n n 返回列表Ist的最大值 :param Ist: ;return: pass Ist = [4, 2, 1, 6, 7, 9] max value = get_ max(lst) print(max_value)
时间: 2024-01-22 20:04:16 浏览: 98
您的代码有一些语法错误,我稍作修改后就可以运行了。以下是您想要的函数定义和使用方法:
```python
def get_max(lst):
return max(lst)
lst = [4, 2, 1, 6, 7, 9]
max_value = get_max(lst)
print(max_value)
```
这个函数使用内置函数`max()`来找到列表中的最大值。在这个例子中,它将返回9。
阅读全文