How to add value to tuple within list
a = [[('one','1'),('two','2')],[('three','3')]]
b = [['I','II'],['III']]
I want it to turn out like
a = [[('one','1','I'),('two','2','II')],[('three','3','III')]]
I try to use append but it doesn't work Thanks for any help.