2879. Display the First Three Rows ¶ Python 1 2 3 4 5import pandas as pd def selectFirstRows(employees: pd.DataFrame) -> pd.DataFrame: return employees.head(3)