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) Was this page helpful? Thanks for your feedback! Thanks for your feedback! Help us improve this page by using our feedback form.