Have been thinking and attempting with no results how to convert a list of lists into multiple lists.
For instance, the following lists of list:
['RZ', ['backho'], ['forest', 'arb']]
Should be converted to n-lists
depending in the maximum length of the elements, so this results in two lists because of length of third element:
['RZ', 'backho', 'forest']
['RZ', 'backho', 'arb']
Each element in the list of lists represents the possibilities to be chosen for the element.