问题:
使用xlsxwriter生成的表格,打开后报错"发现不可读取的内容"
解决:
可能是写入内容格式有问题,
原来的写法:
sheet_table.write(row, col, xxxxx)
全部改为写入字符串后解决:
sheet_table.write_string(row, col, xxxxx)
调用write会自动识别写入的excel格式,改为write_string 强制输入字符串
问题:
使用xlsxwriter生成的表格,打开后报错"发现不可读取的内容"
解决:
可能是写入内容格式有问题,
原来的写法:
sheet_table.write(row, col, xxxxx)
全部改为写入字符串后解决:
sheet_table.write_string(row, col, xxxxx)
调用write会自动识别写入的excel格式,改为write_string 强制输入字符串