Используя Pandas, вы можете читать в файле Excel, разбивать столбцы, сохранять их в кадре данных Pandas, записывать этот кадр данных в новый файл Excel.
import pandas as pd
#Read in your dataset with the 2 headers
df = pd.read_excel(r'sample_docu5.xlsx')
#Split out the first column into 3 different columns
df['Title'], df['Actor'],df['Place'] = df['All'].str.split(',', 2).str
#Delete the 'All' column as we have created 3 new columns
del df['All']
#Reorder the columns
df = df[['Title','Actor','Place','Document_Source']]
df.to_excel('output.xlsx')
df.head()