Languages/Python/File Handling/File ModesFile Modesr, w, a, b, + modesInterview Relevant: File access modes File Modes r: Read (default). w: Write (overwrites). a: Append (adds to end). b: Binary mode (e.g. images). +: Upate (read and write). PreviousWriting FilesNextwith Statement for Files