Day 8 Python
Day 8 Python
Essentials
Day 8
File Handling
Allows the user to read, write, update, and delete files
● "r" - Read - Opens a file for reading, error if the file does not exist
● "a" - Append - Opens a file for appending, creates the file if it does not
exist
● "w" - Write - Opens a file for writing, creates the file if it does not exist
● "x" - Create - Creates the specified file, returns an error if the file exists
import os
if os.path.exists("demofile.txt"):
os.remove("demofile.txt")
else:
print("The file does not exist")