What is the mode for open(..., mode) in Python 3 that opens a file that
- create if does not exist
- do NOT truncate
- binary mode
I tested r+b
but that fails on missing file, w+b
truncates it, and a+b
seem to turn all writes into appends, while I need to overwrite some data.