ecrire dans un 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: php comment supprimer un fichier
if(file_exists($file)) {
unlink($file);
}
Example 3: python vrer un fichier texte
with open("test.txt", "w") as f: # gère close() automatiquement
# traitement