Índice Python do menor valor na lista

if isMinLevel:
    return values.index(min(values))
else:
    return values.index(max(values))
Pleasant Panda