I have excel file which contains XML data in each cell of column, I want to parse those XML data in each cell and save each to new file. Here is my code:
import pandas as pd
import numpy as np
import xml.etree.cElementTree as et
file_path = r'C:\Users\user\Documents\datasets\sample.xlsx'
df = pd.read_excel(file_path)
for i in count_row:
pd.read_xml(df['XML'].iloc[i])