diff --git a/Scripting/Python/Manip-donnees.html b/Scripting/Python/Manip-donnees.html index a9f3d62..b7f365b 100644 --- a/Scripting/Python/Manip-donnees.html +++ b/Scripting/Python/Manip-donnees.html @@ -2,7 +2,7 @@ title: Python - Manipulation des données description: published: true -date: 2021-06-07T08:23:59.075Z +date: 2021-06-07T08:40:13.330Z tags: editor: ckeditor dateCreated: 2021-06-07T08:01:47.026Z @@ -10,7 +10,11 @@ dateCreated: 2021-06-07T08:01:47.026Z
Fichier:Python logo and wordmark.svg — Wikipédia

Les listes

-

 

+

Une liste se déclare avec des crochets et on accède à une donnée par son indice.

+
langages = ["python", "C#","java","C++"]
+
+>>> print(langages[1])
+C#

Les dictionnaires (json)

 

CSV