os.path.exists("exercise_1.py")
os.remove('1.txt')
import os if os.path.exists("demofile.txt"): os.remove("demofile.txt") else: print("The file does not exist")