Marin/definitions.py

9 lines
162 B
Python
Raw Normal View History

2021-12-02 19:05:44 +01:00
### Fonctions communes
def read(path):
# Retourne le contenu texte d'un fichier
f = open(path,'r')
result = f.read()
f.close()
return result