All Downloads are FREE. Search and download functionalities are using the official Maven repository.

g2801_2900.s2879_display_the_first_three_rows.solution.py Maven / Gradle / Ivy

There is a newer version: 1.37
Show newest version
# #Easy #2023_12_23_Time_406_ms_(96.44%)_Space_60.8_MB_(5.67%)

import pandas as pd

def selectFirstRows(zs: pd.DataFrame) -> pd.DataFrame:
    return zs.head(3)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy