import pandas as pdstudents = pd.read_excel('./students.xlsx', sheet_name='Students')scores = pd.read_excel('./students.xlsx', sheet_name='Scores')table = students.merge(scores, how='left', on='ID').fillna(0)table.Score = table.Score.astype(int)print(table)
