Hi, What are the different file processing modes supported by Python
3 Likes
- β r β, mode for reading the file.
- β w β, mode for writing the file.
- β a β, mode for appending into existing file.
- β r+ β, hybrid mode for both reading and writing the file.