Python Finding Index of Maximum in List

前端 未结 9 2571
别那么骄傲
别那么骄傲 2021-02-19 01:13
def main():
    a = [2,1,5,234,3,44,7,6,4,5,9,11,12,14,13]
    max = 0
    for number in a:
        if number > max:
            max = number
    print max

if __name         


        
9条回答
  •  爱一瞬间的悲伤
    2021-02-19 02:11

    If you like powerfull code you would like this :) If you just have integer numbers you can substitute float by int.

    maximum= max(map(float,[2,1,5,234,3,44,7,6,4,5,9,11,12,14,13]))

    If you have your input in a text file do this:

    file.txt

    2 1 5 234 3 44 7 6 4 5 9 11 12 14 13

    maximum= max(map(float,(open('file.txt', 'r').readline()).split()))

提交回复
热议问题