Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 271 Bytes

File metadata and controls

13 lines (10 loc) · 271 Bytes

What Did I Learn?

In this challenge I learned:

  1. Use the .loc[] for access Dataframe lines and columns
students.loc[]
  1. Filtering ["name", "age"] if ["student_id"] == 101
students.loc[students["student_id"] == 101, ["name", "age"]]