On Wed, Apr 13, 2016 at 11:51 PM, durgadevi1
<srirajarajeswaridevikr...@gmail.com> wrote:
> Ok thank you ChrisA. :)
>
> I would like to check with you whether using binascii.hexlify() to convert 
> the series of bytes into alphabets and integers is correct.

It converts the bytes (which are small integers) into the hexadecimal
representation of them (which is digits 0-9 and A-F or a-f). It's
often the easiest way to see what the byte values *are*, but it
doesn't help you much with figuring out what they *mean*.

ChrisA
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to