Re: [Tutor] Best IDE for Python

2007-01-25 Thread Hieu Hoang
On 1/25/07, OkaMthembo <[EMAIL PROTECTED]> wrote: > hi guys, > > would someone please point me to an active link to download SPE? the url to > Stani's site just wont click through to > http://stani.be/python/spe/blog/ A while ago the SPE's author said something on python-list to the effect that he

Re: [Tutor] Best IDE for Python

2007-01-25 Thread Hieu Hoang
Hi all, > -- Forwarded message -- > From: "Alan Gauld" <[EMAIL PROTECTED]> [snip] > > Is there a good IDE where in I type the name of > > the class object and then dot then all the attributes > > of the object are displayed so on. > > There are several that do this but many ar

Re: [Tutor] First real script

2006-11-09 Thread Hieu Hoang
Hi Carlos, I hope this module would help you with the binary conversion part: def tobits(inte,size = 3): """Copy an integer's bits from memory""" s='' for i in range(size): s += str((inte & (1<>i) #bits are extracted right-to-left s = s[::-1] #reverse the result string