We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit cd5b029Copy full SHA for cd5b029
introduction-pandas/display-first-three-rows.py
@@ -0,0 +1,4 @@
1
+import pandas as pd
2
+
3
+def selectFirstRows(employees: pd.DataFrame) -> pd.DataFrame:
4
+ return employees.head(3)
0 commit comments