Re: [Tutor] Python on USB device

2005-03-11 Thread Ralfas Jegorovas
I have just downloaded the package and from what I've seen of it, it looks excellent. As a bonus it is quite well documented (always a good thing :-) ). I'll spend more time playing with it tommorow hopefully. Thanks for your help. All the best, Ralf _

[Tutor] Python on USB device

2005-03-11 Thread Ralfas Jegorovas
Hi everyone, I would like to know if it is possible to install python on a usb device and run it. I found some references to this topic in the archives but I didnt find the information conclusive. Any information would be appreciated. Ralf ___ Tutor ma

[Tutor] Re: Create list of IPs

2005-02-20 Thread Ralfas Jegorovas
Thanks alot to everyone for your help! I'm not completely sure I understand how Roel's code works so I'll be doing a bit of research :-) (but it works :-D). Thanks again. All the best, Ralf ___ Tutor maillist - Tutor@python.org http://mail.python.org/

[Tutor] Create list of IPs

2005-02-20 Thread Ralfas Jegorovas
I am wondering how I would go about making a list of IPs between two set IPs. This is my initial code: def list2str(list): ip='' for part in list: if len(ip)!=0: ip=ip+'.'+part else: ip=ip+part return ip iplist = [] minip = ['1','0','0','1'] # startin