Log in Register Dashboard Temp Share Shortlinks Frames API

HTMLify

LeetCode - Display the First Three Rows - Python
Views: 203 | Author: abh
import pandas as pd

def selectFirstRows(employees: pd.DataFrame) -> pd.DataFrame:
    return employees[:3]

Comments