如何使用 Python 编写 excel 文件并向列的每一行添加一个意图,后跟相同的字符串?
How to write an excel file with Python and to add to each row of a column an intent followed by the same string?
您好,我有上面的代码来编写 excel 文件:
def write_excel(df):
writer = pd.ExcelWriter("PATH\output.xlsx", engine = 'xlsxwriter')
workbook=writer.book
worksheet=workbook.add_worksheet('sheet')
writer.sheets['sheet'] = worksheet
df.to_excel(writer, sheet_name='sheet', startcol = 0, startrow = 0)
writer.save()
write_excel(df)
df 是一个数据框,看起来像:
ID NUMBER OBJECT
1345471886 SIZE-43 GHJ
1481654311 SIZE-48 IJF
8620787660 SIZE-67 EFH
我在下面添加了这段代码,以向 OBJECT 列添加缩进和字符串“hello you, hello”:
def add_agg_columns(df):
df["OBJECT"] = df["OBJECT"] + "\n\nhello you, hello\n"
return df
我得到:
ID NUMBER OBJECT
1345471886 SIZE-43 GHJ\n\nhello you, hello\n
1481654311 SIZE-48 IJF\n\nhello you, hello\n
8620787660 SIZE-67 EFH\n\nhello you, hello\n
在我的 excel 文件中,我希望我的最终输出看起来像:
ID NUMBER OBJECT
1345471886 SIZE-43 GHJ
hello you, hello
1481654311 SIZE-48 IJF
hello you, hello
8620787660 SIZE-67 EFH
hello you, hello
但是我现在写excel文件得到的只是:
ID NUMBER OBJECT
1345471886 SIZE-43 GHJ
1481654311 SIZE-48 IJF
8620787660 SIZE-67 EFH
下面的代码实际上修复了它!
last_sentence = """
hello you, hello
"""
def add_agg_columns(df):
df["OBJECT"] = df["OBJECT"] + last_sentence
return df
def write_excel(df):
writer = pd.ExcelWriter("PATH\output.xlsx", engine = 'xlsxwriter')
workbook=writer.book
worksheet=workbook.add_worksheet('sheet')
writer.sheets['sheet'] = worksheet
df.to_excel(writer, sheet_name='sheet', startcol = 0, startrow = 0)
writer.save()
write_excel(df)
您好,我有上面的代码来编写 excel 文件:
def write_excel(df):
writer = pd.ExcelWriter("PATH\output.xlsx", engine = 'xlsxwriter')
workbook=writer.book
worksheet=workbook.add_worksheet('sheet')
writer.sheets['sheet'] = worksheet
df.to_excel(writer, sheet_name='sheet', startcol = 0, startrow = 0)
writer.save()
write_excel(df)
df 是一个数据框,看起来像:
ID NUMBER OBJECT
1345471886 SIZE-43 GHJ
1481654311 SIZE-48 IJF
8620787660 SIZE-67 EFH
我在下面添加了这段代码,以向 OBJECT 列添加缩进和字符串“hello you, hello”:
def add_agg_columns(df):
df["OBJECT"] = df["OBJECT"] + "\n\nhello you, hello\n"
return df
我得到:
ID NUMBER OBJECT
1345471886 SIZE-43 GHJ\n\nhello you, hello\n
1481654311 SIZE-48 IJF\n\nhello you, hello\n
8620787660 SIZE-67 EFH\n\nhello you, hello\n
在我的 excel 文件中,我希望我的最终输出看起来像:
ID NUMBER OBJECT
1345471886 SIZE-43 GHJ
hello you, hello
1481654311 SIZE-48 IJF
hello you, hello
8620787660 SIZE-67 EFH
hello you, hello
但是我现在写excel文件得到的只是:
ID NUMBER OBJECT
1345471886 SIZE-43 GHJ
1481654311 SIZE-48 IJF
8620787660 SIZE-67 EFH
下面的代码实际上修复了它!
last_sentence = """
hello you, hello
"""
def add_agg_columns(df):
df["OBJECT"] = df["OBJECT"] + last_sentence
return df
def write_excel(df):
writer = pd.ExcelWriter("PATH\output.xlsx", engine = 'xlsxwriter')
workbook=writer.book
worksheet=workbook.add_worksheet('sheet')
writer.sheets['sheet'] = worksheet
df.to_excel(writer, sheet_name='sheet', startcol = 0, startrow = 0)
writer.save()
write_excel(df)