Dashboard Temp Share Shortlinks Frames API

HTMLify

LeetCode - Display the First Three Rows - Python
Views: 349 | Author: abh
1
2
3
4
import pandas as pd

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