Computer Science, asked by ankushgharahi, 5 months ago

Write a program for BINARY FILE in python​

Answers

Answered by Mister360
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