Python: Is there a way to write multi-line strings into an excel cell with just the xlwt module? (I saw answers suggesting use of openpyxl module)
The sheet.write()
method ignores the \n escape sequence. So, just xlwt, is it possible? Thanks in advance.