1
0
Bifurcation 0
miroir de https://github.com/PAPAMICA/Wiki-Tech.io.git synchronisé 2025-01-07 07:30:33 +01:00

docs: update Scripting/Python/Manip-donnees

Cette révision appartient à :
Maxime Mourier 2021-11-17 10:37:50 +00:00 révisé par Mickael Asseline
Parent 147b94c1e9
révision 6101312ee2

Voir le fichier

@ -2,7 +2,7 @@
title: Python - Manipulation des données
description:
published: true
date: 2021-11-17T10:28:57.180Z
date: 2021-11-17T10:37:48.278Z
tags:
editor: ckeditor
dateCreated: 2021-06-07T08:01:47.026Z
@ -215,7 +215,7 @@ ligne 3</code></pre>
<pre><code class="language-python">with open('test.txt','r') as file:
print(file.read().splitlines())
['banane', 'fraise', 'chocolat'] #Les \n indiquent des retours à la ligne</code></pre>
['banane', 'fraise', 'chocolat'] </code></pre>
<p>Enfin, pour écrire dans un fichier texte, on utilise <i>write().</i></p>
<pre><code class="language-python">with open('test.txt','a') as file:
file.write("\nligne 4")</code></pre>