Marin/definitions.py
2021-12-02 19:05:44 +01:00

9 lines
162 B
Python

### Fonctions communes
def read(path):
# Retourne le contenu texte d'un fichier
f = open(path,'r')
result = f.read()
f.close()
return result