What is the difference between read+ mode and write+ mode in python? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What is the difference between read+ mode and write+ mode in python?

Can anyone plz clarify it. Thank you.

29th Jul 2019, 3:33 PM
Gh0stR
Gh0stR - avatar
2 Answers
+ 2
The argument mode points to a string beginning with one of the following sequences (Additional characters may follow these sequences.): ``r'' Open text file for reading. The stream is positioned at the beginning of the file. ``r+'' Open for reading and writing. The stream is positioned at the beginning of the file. ``w'' Truncate file to zero length or create text file for writing. The stream is positioned at the beginning of the file. ``w+'' Open for reading and writing. The file is created if it does not exist, otherwise it is truncated. The stream is positioned at the beginning of the file. ``a'' Open for writing. The file is created if it does not exist. The stream is positioned at the end of the file. Subsequent writes to the file will always end up at the then current end of file, irrespective of any intervening or similar. ``a+'' Open for reading and writing. The file is created if it does not exist. The stream is positioned at the end of the file.
29th Jul 2019, 4:03 PM
Steven M
Steven M - avatar
+ 3
Both r+ and w+ opens files for read / write. But w+ creates file if it doesn't exist. f = open("test", "w+") creates "test" if it doesn't exist. f = open("test", "r+") raises FileNotFound exception if 'test' doesn't exist.
29th Jul 2019, 3:51 PM
unChabon
unChabon - avatar