我想创建一个函数,该函数将打印数字列表中最大值的总和和位置,但我不知道该怎么做。这是我到目前为止开始的:
我使用了一些代码来解决被问到的类似问题。
def maxvalpos(variables):
max = 0
for i in range(len(variables)):
if variables[i] > max:
max = variables[i]
maxIndex = i
return (max, maxIndex)
print maxvalpos(4, 2, 5, 10)
当我运行此代码时,它只返回该函数只能接受 1 个参数。谢谢你。