I have the following list in Python:
list = [[1, (200, 45)], [2, (53, 543)], [3, (5, 5)], [4,(655, 6456464)],[5, (64564, 45)], [6, (6, 5445)], [7, (546, 46)], [8, (64, 645)]
I now want to save these into an Excel and then read them in. How can I do this? I have not found such a "simple" import with Google, mostly it is more complex imports of Excel files.
Thanks
Serpiente32