python 使用xlrd模块copy的时候,源表的单元格格式怎么保留?

python 使用xlrd模块copy的时候,源表的单元格格式怎么保留?

excel_file=xlrd.open_workbook('007.xls') 
sheet1_name = excel_file.sheet_by_index(0) 
sheet2_name = excel_file.sheet_by_index(1)
newWb = copy(excel_file)    
newWb.save('007.xls')

执行过程中,sheet2可以使用带格式写入,这里没有问题。
但是源表sheet1中的格式全部变了。这个要怎么保留?

抱歉,我是新人没有金币哦

https://my.oschina.net/qlistener/blog/1589522