python基础之取列表中最大值的索引值

'''
取列表中最大值的索引值
www.pythontutor.com
'''

list_group = [5,90,59,132,54]
max_index = 0
list_index = 0
for num in list_group:
    if num > list_group[max_index]:
        max_index = list_index
    list_index += 1
print(max_index)

文章题目:python基础之取列表中最大值的索引值
本文路径:http://csdahua.cn/article/pdoojs.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流