如何在列表[变量]中使用变量

how to use variebles in list[variable]

import sys
sort = []   #list
def myMax(mylist):   # function instead of max()
    listadd = 0
    plus1 = listadd + 1
    for listadd in range(a):
    if sort[listadd] > sort[plus1, a]: # where i get error
        return sort[listadd]
while True:
try:
    a = int(input(" How many numbers do you want to compare: "))
    break
except ValueError:
    sys.stderr.write('ERROR\n')
    sys.stderr.write(' Try Again... \n')
for i in range (a):
    while True:
        try:
            n = int(input("Please enter a number: "))
            sort.append(n)
            break
        except ValueError:
            sys.stderr.write('ERROR\n')
            sys.stderr.write(' Try Again... \n')
print(myMax(sort), " is the biggest number! ") # function instead of max()
SystemExit()

简单的最大程序错误。

寻找最大值的程序。一些数字而不使用 max() 并安装所需的模块。

你如何制作一个做同样事情的函数?

您需要遍历列表中的每一项,检查它是否大于目前最高的一项。

x=lst[0]
for i in lst:
    if i > x:
        x = i
return x