Skip to content
Advertisement

Is there a possibility in python to output column values as file names?

I have the following df:

JavaScript

Now I want to output column A values as file names.

JavaScript

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
Advertisement