Is there a good way to merge lists like that:
L1 = [1.1, 1.2, 1.3]
L2 = [2.1, 2.2, 2.3, 2.4]
L3 = [3.1, 3.2]
Result:
[1.1, 2.1, 3.1, 1.2, 2.2, 3.2, 1.3, 2.3, 2.4]
There should be no "None" elements in result.
Edit
Since it was marked as duplicate: I do not need a result like this:
[(1.1, 2.1, 3.1), (1.2, 2.2, 3.2), (1.3, 2.3, None), (None, 2.4, None)]
I do not need any "None" elements. And the result should be one list.