I have two tuples, details below:
t1 = [ ['aa'], ['ff'], ['er'] ]
t2 = [ ['aa', 11,], ['er', 99,] ]
and I would like to get results like the ones below using a python method similar to SQL LEFT OUTER JOIN:
res = [ ['aa', 11,], ['ff', 0,], ['er', 99,] ]
Please help me with this.
source share