Which of the following is not a mode in which a file can be opened in python-Single choice.
read
write
append
upload
Answers
Answered by
2
There are three kinds of mode, that Python provides and how files can be opened:
“ r “, for reading.
“ w “, for writing.
“ a “, for appending.
“ r+ “, for both reading and writing.
Similar questions