[Python] Come scrivere un array di bytes in un file binario

Francesco Guerrieri f.guerrieri a gmail.com
Lun 1 Ott 2007 15:30:33 CEST


On 10/1/07, Patrizio.Ferlito a b-source.ch <Patrizio.Ferlito a b-source.ch> wrote:
> provato ma:
>
> cat my.jar
> array([80, 75, 3, 4, 20, 0, 8, 0, 8, 0, -111, 121, 65, 55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, ...., 0, 0, 0], byte)


Questo vuol dire che str(bytes) ha quella rappresentazione. Cosa ti
aspettavi invece?

Potresti provare a usare

output_file.write(repr(bytes))


ciao
francesco


Maggiori informazioni sulla lista Python