У меня есть два листа Excel, содержащие метки «Имена столбцов», «Имя псевдонима», «Таблица». Псевдоним является общим в обеих книгах Excel.
File1.xlsx
TABLE ALIAS
Employee ON
Department Dept
Customer Cust
File2.xlsx
ALIAS COLUMN
Employee EmpID
Dept DeptName
Dept DeptID
Employee EmpName
Здесь лог c должен выглядеть примерно так:
КОД
dfFile1 = pd.read_excel("File1.xlsx")
dfFile2 = pd.read_excel("File2.xlsx")
if(dfFile1.Alias == "ON"):
if(dfFile1.Table.value == dfFile2.ALias.value):
# some code
to merge "TABLE" && "COLUMN"```
The output should like below
TABLE COLUMN
Employee EmpID
Employee EmpName