Question: Import a 2 list with a list into excel

Let L be list say

 

L:=[[[1,2],3],[[1,3],4],[[1,4],4],[[1,7],7]]

The list is of this type it can be any list type and can be of any size it should be exported to excel like a table like this

A        B

(1,2)    3

(1,3)    4

(1,4)    4

(1,7)    7

 

First is in column A

and second is in column B

 

See brackets changed

kind help with the needul

Please Wait...