2e4a01c
1
2
3
4
5
6
7
8
9
import os if os.path.exists("docs/data.txt"): os.remove("docs/data.txt") if os.path.exists("docs/customdata.txt"): os.remove("docs/customdata.txt") file = open("docs/data.txt", "x") file = open("docs/customdata.txt", "x") file.close()