0
Why not use the read function when using the w + and a + mode when opening a file in Python?
?
2 Antworten
+ 2
Here default r mode existing
+ 1
Because in a+ and w+ modes are reading the files from the end, while in r and r+ you are reading the files from the start.
I don't know why a+ and w+ modes even exist.