Skip to content

Instantly share code, notes, and snippets.

@AI-MOO
Created June 24, 2022 18:42
Show Gist options
  • Save AI-MOO/afc8885a8ac998dc5210c8d7c4f6a3d8 to your computer and use it in GitHub Desktop.
Save AI-MOO/afc8885a8ac998dc5210c8d7c4f6a3d8 to your computer and use it in GitHub Desktop.
# ترتيب الصفوف وفقًا لسمة السعر بشكل تنازلي
diamonds_price = diamonds.sort_values("price", ascending = False)
# عرض أول 10 صفوف
display(diamonds_price.head(10))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment