Write a program for BINARY FILE in python
Answers
Answered by
0
Answer:
Explanation:
Python has tools for working with binary files. Binary files use strings of type bytes. This means when reading binary data from a file, an object of type bytes is returned. The binary file is opened using the open() function, whose mode parameter contains the character 'b'
Similar questions