Trying to use the elements of nested lists for the arguments of a function
list = [[ "stringA" , 11, 22], [ "stringB", 33 , 44]]
def func ( 'str' , a , b ):
I know how to call a single element: list[0][1] and func(*list) to use the lists as an argument.
How do I use the individual elements?
listwith your own variable. I've usedlstinstead in my answer