Comment créer un fichier dans un emplacement spécifique dans Python
file = open(r'C:\file.py', 'a') # C:\file.py is the location
Helpful Hoopoe
file = open(r'C:\file.py', 'a') # C:\file.py is the location
f = open(r"C:\Test.py", "a")