how to divide a column in to two columns in an excel using a delimiter ', 'and name the header's using python
here is my code
import openpyxl
w=openpyxl.load_workbook('DDdata.xlsx')
active=w.active
a=active.columns[1]
for cellobj in a:
s=cellobj.value
fila=s.split(',')
print(fila)
[Input file link][1]
[outputfile][3]