Re: [BangPypers] hi everybody

2008-06-17 Thread venkata subramanian m
your editor/IDE is like the wand in Harry Potter. Your wand will find you (eventually). One of the best ways to start is to find "some" basic way to input your code, save it properly, and spend more time with coding than choosing what to code in. Soon, you will come across other editors which

Re: [BangPypers] How to sort the IP(s)

2008-05-08 Thread venkata subramanian m
Anand Balachandran Pillai wrote: Do you really need any kind of additional processing ? But, string sorting might not produce proper sorting right? >>> l=['192.168.11.1','172.18.13.2','192.168.2.2','172.19.2.1'] >>> l.sort() >>> l ['172.18.13.2', '172.19.2.1', '192.168.11.1', '192.168.2.2']