creer fichier python code example
Example 1: lecture de fichier python
# coding: utf-8
fichier = open("data.txt", "r")
print fichier.read()
fichier.close()
Example 2: python vrer un fichier texte
with open("test.txt", "w") as f: # gère close() automatiquement
# traitement