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

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

There is a newer version: 1.37
Show newest version
# #Easy #2023_12_23_Time_428_ms_(94.99%)_Space_60_MB_(83.82%)

import pandas as pd

def selectData(students: pd.DataFrame) -> pd.DataFrame:
    return students[students.student_id == 101][['name','age']]




© 2015 - 2024 Weber Informatics LLC | Privacy Policy