I have the following list of lists.
[['julian', '0', '5'], ['ana', '10', '4']]
I need to use a function that tells me the position of any element within that list, I tried to use:
elemento = lista.index('julian')
print (elemento)...
asked on
05.06.2017 / 08:55