input_list = [['as','as*s','sd','*ssa'],['a','ds','dfg','mal']]
I want this to be written into an excel sheet (XLS format) where each sublist is a row in the excel sheet (XLS format)
for my case, it is best to preserve the input as a nested list, but if that is not possible, I am willing to 'unpack' the nested list into something like this
modified_input_list = ['as','as*s','sd','*ssa','a','ds','dfg','mal']
and then write every 4 elements into a row into the excel sheet (XLS format)
it is very important the solution being provided takes into consideration that the rows are being written into an excel sheet of XLS format ONLY. I have imported XLRD to read other XLS type sheets, and there is no need to state that import in the solution.
Thanks in advance