
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Open Binary File in Read and Write Mode with Python
To open binary files in binary read/write mode, specify 'w+b' as the mode(w=write, b=binary). For example,
f = open('my_file.mp3', 'w+b') file_content = f.read() f.write(b'Hello') f.close()
Above code opens my_file.mp3 in binary read/write mode, stores the file content in file_content variable and rewrites the file to contain "Hello" in binary. You can also use r+mode as it doesn't truncate the file.
Advertisements