2021-06-07 10:01:49 +02:00
<!--
title: Python - Manipulation des données
description:
published: true
2021-06-07 10:52:29 +02:00
date: 2021-06-07T08:52:28.360Z
2021-06-07 10:01:49 +02:00
tags:
editor: ckeditor
dateCreated: 2021-06-07T08:01:47.026Z
-->
< figure class = "image image_resized" style = "width:53.94%;" > < img src = "https://upload.wikimedia.org/wikipedia/commons/thumb/f/f8/Python_logo_and_wordmark.svg/1200px-Python_logo_and_wordmark.svg.png" alt = "Fichier:Python logo and wordmark.svg — Wikipédia" > < / figure >
< h1 > Les listes< / h1 >
2021-06-07 10:40:14 +02:00
< p > Une liste se déclare avec des crochets et on accède à une donnée par son indice.< / p >
< pre > < code class = "language-python" > langages = ["python", "C#","java","C++"]
> > > print(langages[1])
C#< / code > < / pre >
2021-06-07 10:41:24 +02:00
< h2 > Les actions possibles sur une liste< / h2 >
2021-06-07 10:52:29 +02:00
< p > list.< strong > append()< / strong > < / p >
< p > list.< strong > insert()< / strong > < / p >
< p > list.< strong > extend()< / strong > < / p >
< p > list.< strong > remove()< / strong > < / p >
< p > list.< strong > pop()< / strong > < / p >
< p > list.< strong > index()< / strong > < / p >
< p > list.< strong > count()< / strong > < / p >
< p > list.< strong > sort< / strong > < / p >
< p > list.< strong > reverse()< / strong > < / p >
2021-06-07 10:03:22 +02:00
< h1 > Les dictionnaires (json)< / h1 >
< p > < / p >
< h1 > CSV< / h1 >
< p > < / p >
< h1 > Lire un txt< / h1 >
< p > < / p >
2021-06-07 10:24:00 +02:00
< h1 > Formater des données< / h1 >
< p > < / p >