Skip to content

2879-display-the-first-three-rows

DevGod
DevGod
Vtuber
import pandas as pd
def selectFirstRows(employees: pd.DataFrame) -> pd.DataFrame:
return employees.head(3)