I want to separate different numbers in this list:
[([2437], [0.235]), ([4942], [0.217])]
and put them in new lists. Python returns length of this list equal to 2. I need to have two lists like these: [2437, 4942]
and [0.235, 0.217]
.
How can I able to reach these lists from the above list in python?