私はこれをフォローしているExcelにテキストを書き込もうとしています post 。これは以前は機能していましたが、現在は機能していません。私は得る:
エラー:
line 122, in <module>
worksheet.write(0, 11, 'HI')
AttributeError: 'Worksheet' object has no attribute 'write'
df1
A E
c d
c D
コード:
writer = pd.ExcelWriter("C:\\33.xlsx")
df1.to_Excel(writer, startrow=0, startcol=0, index = False)
worksheet = writer.sheets['Sheet1']
worksheet.write(0, 11, 'YO')
worksheet.write(1, 11, 'HI')
私も試しました:
import xlrd
import xlwt
from xlutils.copy import copy
import os.path
rb = xlrd.open_workbook('C:\\13.xlsx',formatting_info=True)
r_sheet = rb.sheet_by_index(0)
wb = copy(rb)
sheet = wb.get_sheet(0)
sheet.write(5,2,"string")
wb.save('C:\\13.xlsx')
私は得る:
with open(filename, "rb") as f:
OSError: [Errno 22] Invalid argument: 'C:\\13.xlsx"'
AttributeError: 'Worksheet' object has no attribute 'write'
を修正するにはどうすればよいですか
それが与える理由:AttributeError: 'Worksheet' object has no attribute 'write'
このPCにxlsxwriterをインストールしていないことに気付いたからです。
pip install xlsxwriter
今では動作します。