Python - 在数字列表中查找最大数字

问题描述 投票:75回答:7

有没有简单的方法或函数来确定python列表中的最大数字?我可以只编码它,因为我只有三个数字,但如果我能用内置函数或其他东西告诉最好的代码,它会使代码更少冗余。

python numbers
7个回答
119
投票

那么max()呢?

highest = max(1, 2, 3)  # or max([1, 2, 3]) for lists

11
投票

您可以使用带有多个参数的内置函数max()

print max(1, 2, 3)

或列表:

list = [1, 2, 3]
print max(list)

或者事实上任何可迭代的。


10
投票

这种方法不使用max()函数

如果你必须在不使用max函数的情况下找到它,那么你可以按照下面的代码:

    a=[1,2,3,4,6,7,99,88,999]
    max= 0
    for i in a:
        if i > max:
            max=i
    print(max)

此外,如果要查找最终结果的索引,

print(a.index(max))

8
投票

使用max()

>>> l = [1, 2, 5]
>>> max(l)
5
>>> 

2
投票

你可以实际排序:

sorted(l,reverse=True)

l = [1, 2, 3]
sort=sorted(l,reverse=True)
print(sort)

你得到:

[3,2,1]

但是如果想要获得最大值,仍然可以:

print(sort[0])

你得到:

3

if second max:

print(sort[1])

等等...


1
投票

max是python中的内置函数,用于从序列中获取最大值,即(list,tuple,set等)。

print(max([9, 7, 12, 5]))

# prints 12 

-5
投票
    #Ask for number input
first = int(raw_input('Please type a number: '))
second = int(raw_input('Please type a number: '))
third = int(raw_input('Please type a number: '))
fourth = int(raw_input('Please type a number: '))
fifth = int(raw_input('Please type a number: '))
sixth = int(raw_input('Please type a number: '))
seventh = int(raw_input('Please type a number: '))
eighth = int(raw_input('Please type a number: '))
ninth = int(raw_input('Please type a number: '))
tenth = int(raw_input('Please type a number: '))

    #create a list for variables
sorted_list = [first, second, third, fourth, fifth, sixth, seventh, 
              eighth, ninth, tenth]
odd_numbers = []

    #filter list and add odd numbers to new list
for value in sorted_list:
    if value%2 != 0:
        odd_numbers.append(value)
print 'The greatest odd number you typed was:', max(odd_numbers)
© www.soinside.com 2019 - 2024. All rights reserved.