le mode wa des fichiers en python code example
Example: lecture de fichier python
# coding: utf-8
fichier = open("data.txt", "r")
print fichier.read()
fichier.close()
# coding: utf-8
fichier = open("data.txt", "r")
print fichier.read()
fichier.close()