Python:求列表的最大數以及下標

weixin_42161670發表於2020-12-13
# 方法一
nums = [2,5,2,9,0]
x = nums[0] #假設最大數是列表中第一個數
for num in nums:
    if num > x:
        x = num
print('最大數是{},對應的下標是{}'.format(x,nums.index(x)))

# 方法二
nums4 = [2,5,2,9,0]
i = 0
x = nums4[0]
index = 0
while i < len(nums4):
    if nums4[i] > x:
        x = nums4[i]
        index = i
    i += 1
print('最大數是{},對應的下標是{}'.format(x,index))

# 方法三
nums2 = [2,5,2,9,0]
nums2.sort()
print(nums2[-1])

# 方法四
nums3 = [2,5,2,9,0]
nums3.sort(reverse=True)
print(nums3[0])

相關文章