0
from collections import OrderedDict #Pra poder acessar os elementos igual listas e tuplas.
v v v
lista_aberta = {(1,3): [1,2,3,4], (1,4): [2,3,4,9], (1,5): [3,4,1,7]}
I need to check all the elements and return which has the [3] lowest value, which in this case is (1.3) where its [3] value equals 4.
use a repeating structure to compare values, or have some more direct method to do this?
Thanks, it helped a lot.
– Marcos Vinícius