python小技巧:獲取列表最大值以及位置

newMiao001發表於2020-10-26
#!/usr/bin/env python
# -*- coding:UTF-8 -*-
# @Time  : 2020/10/26 0026 22:09
# @File  : tst.py
# @email : spirit_az@foxmail.com
__author__ = 'ChenLiang.Miao'

# +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
# import --+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
import random
# proc function -+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
# function main -+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ #
getList = [random.random() for i in range(10)]
maxIndex = max(enumerate(getList), key=lambda x: x[-1])
print maxIndex

 

相關文章