Python Créer un fichier s'il n'est pas existant
import os
if not os.path.exists(path):
with open(path, 'w'):
Doubtful Dingo
import os
if not os.path.exists(path):
with open(path, 'w'):
import os
if not os.path.exists("PATH"):
with open("PATH", "w"):
pass