students.xlsx

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