I'm trying to save some text with xlwt module, creating new xls document and saving text there.So far it worked great, until I came across unicode text: for example simple string '80°'.
When I call book.save('simple.xls')
I get UnicodeDecodeError: 'ascii' codec can't decode byte 0xc2
.Is there any way I can avoid that?