I have a word file (.docx) containing comma separated data as shown in format below:
Id,Firstname,Lastname,Salary,Department
1,ABC,XYZ,10000,ENG
2,DEF,XYZ,20000,FIN
I want to read this comma separated data directly as a dataframe in pandas. Please help.
I have already found a way to convert this data into an excel .csv file and then use pd.read_csv function in pandas. But, wanted to know if direct data import from .docx would be possible or not?
TIA!