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