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

时间:2017-12-31 13:14:37

标签: python python-3.x python-3.2

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()并安装所需的模块。

你如何制作一个能做同样事情的功能?

1 个答案:

答案 0 :(得分:1)

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

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