Created
May 10, 2018 20:02
-
-
Save JetStarBlues/c0dde95346ef54ca9ec2c85139da6e3e to your computer and use it in GitHub Desktop.
Write a binary file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
outputFile = "" | |
byts = [] | |
with open( outputFile, 'wb' ) as file: | |
file.write( bytes( byts ) ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment