Re: [Tutor] About Python Module to Process Bytes

2015-08-05 Thread Michelle Meiduo Wu
I think this works for me! Thanks a lot,Michelle > From: d...@hashcollision.org > Date: Tue, 4 Aug 2015 12:12:20 -0700 > Subject: Re: [Tutor] About Python Module to Process Bytes > To: wum...@hotmail.com > CC: tutor@python.org > > On Tue, Aug 4, 2015 at 9:26 AM, Michelle Mei

Re: [Tutor] About Python Module to Process Bytes

2015-08-04 Thread Steven D'Aprano
On Tue, Aug 04, 2015 at 12:26:16PM -0400, Michelle Meiduo Wu wrote: > Hi there, > I'd like to find some python module to easily process bytes array > data, like encoding different types of data (char, long, short, float, > etc) into a same bytes array. I checked Python built-in library and > th

Re: [Tutor] About Python Module to Process Bytes

2015-08-04 Thread Jerry Hill
On Tue, Aug 4, 2015 at 12:26 PM, Michelle Meiduo Wu wrote: > Hi there, > I'd like to find some python module to easily process bytes array data, like > encoding different types of data (char, long, short, float, etc) into a same > bytes array. I checked Python built-in library and there are byte

Re: [Tutor] About Python Module to Process Bytes

2015-08-04 Thread Danny Yoo
On Tue, Aug 4, 2015 at 9:26 AM, Michelle Meiduo Wu wrote: > Hi there, > I'd like to find some python module to easily process bytes array data, like > encoding different types of data (char, long, short, float, etc) into a same > bytes array. I checked Python built-in library and there are bytes

[Tutor] About Python Module to Process Bytes

2015-08-04 Thread Michelle Meiduo Wu
Hi there, I'd like to find some python module to easily process bytes array data, like encoding different types of data (char, long, short, float, etc) into a same bytes array. I checked Python built-in library and there are bytes and bytearray types which don't provide enough functions for proc