Day 6: File I/O in Python
Python can be used to perform operations on a file (read and write data)
Types of all files
Text files: .txt, .docx, .log etc (data is stored in character form)
Binary Files: .mp4, .mov, .png, .jpeg etc
Basic operations on a file - Open, read and...