Output from to_bytes

Grant Edwards invalid at invalid.invalid
Tue May 28 11:35:19 EDT 2013


On 2013-05-26, Mok-Kong Shen <mok-kong.shen at t-online.de> wrote:
> I don't understand why with the code:
>
>     for k in range(8,12,1):
>       print(k.to_bytes(2,byteorder='big'))
>
> one gets the following output:
>
>     b'\x00\x08'
>     b'\x00\t'
>     b'\x00\n'
>     b'\x00\x0b'
>
> I mean the 2nd and 3rd should be b'\x00\x09' and b'x00\x0a'.
> Anyway, how could I get the output in the forms I want?

Well, it would help if you told us what output form you want.

-- 
Grant Edwards               grant.b.edwards        Yow! I'm gliding over a
                                  at               NUCLEAR WASTE DUMP near
                              gmail.com            ATLANTA, Georgia!!



More information about the Python-list mailing list