I'm trying to copy data to an excel file using xlwt in a python code
worksheet.write(globdat.cycle,1,fint)
globdat.cycle is a count. No problems there since it gets values 1, 2.... n in each iteration.
BUT
'fint' is an array with an unknown number of entries so I cannot exactly give the number of columns.
How can I be able to copy all the values in 'fint' to the excel file ?