Differentiate between file modes r + and rb + with respect to Python.
Answer:
|
r + |
rb + |
|
Opens a file for both reading and writing . |
Opens a file for both reading and writing in binary format. |
|
The file pointer will be at the beginning of the file. |
The file pointer will be at the beginning of the file. |