excel自動換行?
style = xlwt.XFStyle() # 初始化樣式
font = xlwt.Font() # 為樣式創建字體
style.font = font # 設定樣式
style.alignment.wrap = 1#自動換行
使用:
worksheet1.write(0, 0, 'line1\r\nline2', style)
excel自動換行?
style = xlwt.XFStyle() # 初始化樣式
font = xlwt.Font() # 為樣式創建字體
style.font = font # 設定樣式
style.alignment.wrap = 1#自動換行
使用:
worksheet1.write(0, 0, 'line1\r\nline2', style)