Hello, all experts,
I am now using xlwt to create excel file with python. But there is a problem when I
use the write() function to write a backspace('\b') into one cell of the excel file but it turns out that
the excel file cannot interpret it correctly, that is, this backspace cannot delete what I write it before but is interpreted
as another strange sign instead. The code is like this:
ws.write(3, 1, '2 '+George, xlwt.easyxf('font: name Times New Roman, color-index pink; borders: left THIN, right THIN, top THIN, bottom THIN; align: wrap on, vert center, horiz center;'))
where ws is a sheet pointer and George is a string.
How can I write '\b' correctly into the cell of the excel file?
Thanks!