Re: [Tutor] Sequences of letter

2010-04-12 Thread Yashwin Kanchan
Hi Juan Hope you have got the correct picture now... I just wanted to show you another way of doing the above thing in just 4 lines. for i in range(65,91): for j in range(65,91): for k in range(65,91): print chr(i)+chr(j)+chr(k), On 12 April 2010 06:12, Juan Jose Del Toro wrote: > Dear List;

Re: [Tutor] Remote access from Windows PC to a Linux box

2010-04-21 Thread Yashwin Kanchan
7;out.txt'];* Or if you are using NOHUP try redirecting this way... *CMD_LIST=[PLINK,sess_name,'/usr/bin/nohup','/usr/bin/sudo /usr/sbin/tshark > out.txt 2> out.err < /dev/null ', '-a', 'duration:10', '-i', 'wlan0', '-T

Re: [Tutor] Unable to run a simple Hello.py in WinXP

2010-05-17 Thread Yashwin Kanchan
shell. Could you please tell us do you mean IDLE or the python command prompt?In either case please tell us how do you to initiate the shell on your machine. Regards Yashwin Kanchan On 17 May 2010 09:05, Sivapathasuntha Aruliah < sivapathasuntha.arul...@amkor.com> wrote: > > Hi > If

[Tutor] COM server: cannot assign property

2009-11-12 Thread Yashwin Kanchan
quot; MsgBox test.t End Sub Error; "Object doesnt support this property or method" at test.t = "hello" Thanks Yashwin Kanchan ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] How to read websites - Web Scraping or Parsing in python

2012-06-13 Thread Yashwin Kanchan
-of-7/') ie.GetDocumentText() This gives the complete text of the webpage , you can then work on cutting out the section that you actually require. This isnt a complete solution to your problem , but it would bring you a bit closer. Regards Yashwin Kanchan ___