Exercice 5
Créer un programme pandas python qui renvoie une série pandas à partir de la liste python: L = ['python' , 'Java' , 'PHP', 'Javascript' , 'C++']. sans utiliser la bibliothèque numpy!
Solution
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# import pandas lib. as ps import pandas as ps list_index = [1, 2, 3, 4, 5] L = ['python' , 'Java' , 'PHP', 'Javascript' , 'C++'] # create Pandas Series with define indexes s = ps.Series(L, index = list_index) # print the Series print(s) """ output: 1 python 2 Java 3 PHP 4 Javascript 5 C++ dtype: object """ |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercice 5: série pandas à partir d'une liste python”