Exercice 9
Reprendre l'exercice précédent (Exercice 8) avec cette fois-ci un affichage trié selon l'âge décroissant.
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import pandas as ps dictData = {'ID' : [31, 71, 30 , 11 , 23] , 'Nom': ['Julia', 'Tiago', 'Charlie' , 'Alba' , 'Isaac'], 'Age': [22, 21, 20, 20 , 23], 'Taille': [170, 190, 181 , 175 , 165]} # création du dataframe df = ps.DataFrame(dictData , index=[235 , 155 , 243 , 311 , 117]) # colonnes 'Nom' et 'Age' avec tri décroissant selon l'age print(df[['Nom','Age']].sort_values(['Age'] , ascending=False)) """ output: Nom Age 117 Isaac 23 235 Julia 22 155 Tiago 21 243 Charlie 20 311 Alba 20 """ |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 9: trie décroissant d'un dataframe pandas”