In <[EMAIL PROTECTED]>, luca72 wrote:

> if i have one file written in binary mode, how can i append others
> binary data to this file after the its closure.
> ex
> my_file = open('blabal', 'wb')
> then i write something and then
> my_file.close()
> now if i need to open it again and append other binary data how can i
> proceed?

Just open it in append mode: ``open('blablal', 'ab')``

Ciao,
        Marc 'BlackJack' Rintsch
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to