I have created a nested list in python which looks like
my_list = [[a,b],[c,d],[e,f],[g,h].....]
What I want to do is insert this list as a batch so that each element gets inserted in a new row in the google sheet. This list is generated from an user input and therefore the number of elements in my_list
may vary.
The final output should look as follows:
I do not want to do this row by row as the list can be lengthy and there can be many similar lists which will the make the entire process inefficient.
Any help would be greatly appreciated!!