Let say this is the original list
a = [['john', 12, 15],
['keith', 8, 20],
['jane', 18, 10]]
I want to add a value 99 to each row, the expected result will be like
a = [['john', 12, 15, 99],
['keith', 8, 20, 99],
['jane', 18, 10, 99]]
Any build in function to achieve this result?