Computer Science, asked by Danykoshy, 5 months ago

explain about different types of read and write functions in file handling python ​

Answers

Answered by taifahmedrather
2

Answer:

This is your answer.

Explanation:

We use open () function in Python to open a file in read or write mode. As explained above, open ( ) will return a file object.

...

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.

please mark me brainliest

Similar questions