Question 1

Which of the following is NOT one of the four modes for opening a file in Python, using the open() function?(1 point)
Responses

"r" (read)
"r" (read)

"d" (delete)
"d" (delete)

"w" (write)
"w" (write)

"a" (append)

1 answer

The mode that is NOT one of the four modes for opening a file in Python using the open() function is:

"d" (delete)

The correct modes are "r" (read), "w" (write), and "a" (append).