What data structure is used to build a concatenation of lists of strings with different size?
E.g.,
a_list = ['h','i']
b_list = ['t','h','e','r','e']
c_list = ['fr', 'ie','nd']
desired structure:
my_structure = [ ['h','i'],
['t','h','e','r','e'],
['fr', 'ie','nd']
]
and then fill it in with 'null' strings to get the same size in every list:
my_structure = [ ['h','i','null','null','null'],
['t','h','e','r','e'],
['fr', 'ie','nd','null', 'null']
]