I have the following df:
JavaScript
x
9
1
In [1]: df = pd.DataFrame([[1, 2], [1, 3], [4, 6]], columns=['A', 'B'])
2
3
In [2]: df
4
Out[2]:
5
A B
6
0 1 2
7
1 1 3
8
2 4 6
9
Now I want to output column A values as file names.
JavaScript
1
16
16
1
fac_doc_template = XML
2
3
fac_details_xml_template = {A}
4
{B}
5
6
#formatting
7
def series_to_fac_details_xml(s):
8
return fac_details_xml_template.format(**s)
9
10
11
#for loop to output file as index names
12
for index, row in df.iterrows():
13
details = series_to_fac_details_xml(row)
14
with open(fr"C:UsersMax12DesktopxmlpdfminerUiPathoutput{index}.xml", "w") as f:
15
f.write(fac_doc_template.format(fac_details=details))
16
My output now is: 0.xml, 1.xml, 2.xml.
However I would like my output files to be the following:
1.xml, 1.xml, 4.xml.
Can you help me?
Advertisement
Answer
Use the 'A'
value from the row, so:
JavaScript
1
6
1
#for loop to output file as index names
2
for index, row in df.iterrows():
3
details = series_to_fac_details_xml(row)
4
with open(fr"C:UsersMax12DesktopxmlpdfminerUiPathoutput{row['A']}.xml", "w") as f:
5
f.write(fac_doc_template.format(fac_details=details))
6