Computer Science

Which of the following is not a valid mode to open a file ?

  1. ab
  2. rw
  3. r+
  4. w+

Python File Handling

5 Likes

Answer

rw

Reason — rw is not a valid mode to open file in Python.

Answered By

2 Likes


Related Questions