We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dde59c8 commit 21c63b8Copy full SHA for 21c63b8
2891. Method Chaining.py
@@ -0,0 +1,4 @@
1
+import pandas as pd
2
+
3
+def findHeavyAnimals(animals: pd.DataFrame) -> pd.DataFrame:
4
+ return animals[animals ['weight'] > 100].sort_values(by = ['weight'], ascending = False)[['name']]
0 commit comments