[BangPypers] need help w.r.t itertools

2013-09-13 Thread Suyash Bhatt
Hi all, i need help in finding the most optimized way of making a list using itertools. Suppose I have 3 lists: *a=[‘my1’,’my2’] * ** *b=[‘name1’,’name2’]* *c=[‘is1’]* I want to iter through all and form another list with the following appended strings: *d=['my1name1is1','my1name2is1','my2

Re: [BangPypers] need help w.r.t itertools

2013-09-15 Thread Suyash Bhatt
thanks for the response.. what if i have another list *e = [*'*my1name1is1','**my2name2is1','xyz','abc']* *and in the list d, I want only the elements which are present in e..* * * *in such a case,* *d should have only 2 elements : ['**my1name1is1','**my2name2is1']* * * i want the way with the le

[BangPypers] Establishing remote connection

2014-02-03 Thread Suyash Bhatt
Hi all, I am a beginner python programmer and am writing a piece of code to execute an application which provides an API, on a remote desktop. I need help to figure out a way to establish socket connection to a pc with known TCP/IP address. I believe if I am able to operate command line, say openi

[BangPypers] Python training material

2015-01-19 Thread Suyash Bhatt
Hi Friends, I am looking for any Basic training material for Python which can be shared across (with due credit). Please let me know if anyone can help me with that. Regards, Suyash ___ BangPypers mailing list BangPypers@python.org https://mail.python.o

Re: [BangPypers] Python training material

2015-01-19 Thread Suyash Bhatt
Thanks a lot Anand. Suyash On Tue, Jan 20, 2015 at 10:42 AM, Anand Chitipothu wrote: > On Tue, Jan 20, 2015 at 10:09 AM, Suyash Bhatt > wrote: > > > Hi Friends, > > > > I am looking for any Basic training material for Python which can be > shared > > acro