REG: Interactive Python (ipython notebook) Tutorial for Beginners

2013-11-08 Thread Anoop Thomas Mathew
Hi All, Lately, I've been working on a ipython notebook tutorial for beginners. The idea is that, those who have basic idea about computers should be able to pick up python very easily. https://bitbucket.org/atmb4u/python-live/ I have completed 25 chapters. Would love some reviews, suggestions a

Re: simple client data base

2012-09-03 Thread Anoop Thomas Mathew
Hi, You can make use of sqlite database also. And for the structure, you can create a single table and different columns for the fields like name, number etc. You can get more details over here. http://docs.python.org/library/sqlite3.html Thanks, Anoop Thomas Mathew atm ___ Life is short, Live

Re: pylagiarism -- Need help now! Please provide code...

2012-08-14 Thread Anoop Thomas Mathew
On 14 August 2012 12:04, Simon Cropper wrote: > Hi Everyone, > > I just had a great idea for a new python module. I haven't bothered > googling it or doing any research. > > I need help putting together some code; today preferably, my boss is on my > back. Can someone please contribute a functioni

Re: Demise of Mr. Kenneth Gonsalves

2012-08-03 Thread Anoop Thomas Mathew
Chronic Asthma. He was hospitalized yesterday, and passed away today. On 3 August 2012 20:45, Marcin Tustin wrote: > What happened to him? He was posting on this list in the last week? > > On Fri, Aug 3, 2012 at 11:12 AM, Anoop Thomas Mathew wrote: > >> With my heartfelt co

Demise of Mr. Kenneth Gonsalves

2012-08-03 Thread Anoop Thomas Mathew
d the PyCon India, done a lot of workshops on Python and was an active member in the Django user group. Anoop Thomas Mathew -- http://mail.python.org/mailman/listinfo/python-list

Re: string to list

2012-06-14 Thread Anoop Thomas Mathew
@group: Sorry for the mistake. @Hemanth: Thank You for pointing out. I just realized that, we should not copy paste from the console. :) atm ___ Life is short, Live it hard. On 14 June 2012 13:09, Hemanth H.M wrote: > @Annop Nice one, but you seem to have missed a parenthesis. > > >>> list(l

Re: string to list

2012-06-14 Thread Anoop Thomas Mathew
Hi, You can use literal_eval from ast package. >>> from ast import literal_eval >>> list(literal_eval("'aa','bb','cc'") this will return ['aa', 'bb', 'cc'] Thanks, Anoop Thomas Mathew atm ___ Life is short

Re: Python Script Works Locally But Not Remotely with SSH

2012-04-02 Thread Anoop Thomas Mathew
Hi, You can try using ssh -X xxx.xxx.xxx.xxx for GUI ssh connection. Thanks, Anoop Thomas Mathew atm ___ Life is short, Live it hard. On 28 March 2012 06:21, goldtech wrote: > Hi, > > I have a WinXP PC running an SSH server and I have a Linux PC with an > SSH client and log

Deprecation in String.joinfields()

2006-09-25 Thread Anoop
ewname1 'a.b.mpilgrim.z' >>> newname = li[:-1].joinfields(".") Traceback (most recent call last): File "", line 1, in ? AttributeError: 'list' object has no attribute 'join' Thank you for your help Anoop -- http://mail.python.org/mailman/listinfo/python-list

String.digits help!!!

2006-08-08 Thread Anoop
t would be ur suggestions Thanks for ur inputs Anoop -- http://mail.python.org/mailman/listinfo/python-list

Re: Help in string.digits functions

2006-07-25 Thread Anoop
the common python would require these string.digits to be changed. If so wat would be ur suggestions Thanks and regards Anoop John McMonagle wrote: > On Mon, 2006-07-24 at 22:19 -0700, Anoop wrote: > > Hi All > > > > I am getting two different outputs when i

Help in string.digits functions

2006-07-24 Thread Anoop
Hi All I am getting two different outputs when i do an operation using string.digits and test.isdigit(). Is there any difference between the two. I have given the sample program and the output Thanks for ur inputs Anoop #1: ~~ import string test='121206' if test not in str

Checking File permissions

2006-07-20 Thread Anoop
Hi All Please tell me how to check the existence of a file and the read permission to the file using python script Thanks for ur inputs Anoop -- http://mail.python.org/mailman/listinfo/python-list

Checking File permissions

2006-07-20 Thread Anoop
Hi All Please tell me how to check the existence of a file and the read permission to the file using python script Thanks for ur inputs Anoop -- http://mail.python.org/mailman/listinfo/python-list

Checking File permissions

2006-07-20 Thread Anoop
Hi All Please tell me how to check the existence of a file and the read permission to the file using python script Thanks for ur inputs Anoop -- http://mail.python.org/mailman/listinfo/python-list

Re: Depricated String Functions in Python

2006-07-20 Thread Anoop
Thanks Stefen let me be more specific how would i have to write the following function in the deprecated format map(string.lower,list) Thanks Anoop Stefan Behnel wrote: > Anoop wrote: > > Can any one help me out with the various depricated string functions > > that is fol

Depricated String Functions in Python

2006-07-19 Thread Anoop
: >>> python Thanks for your inputs Regards Anoop -- http://mail.python.org/mailman/listinfo/python-list

String operations

2004-12-01 Thread Anoop Rajendra
dor_q","-l","-constraint",'"ProjectId==\\\"anoopr_samadams.fnal.gov_161903_30209\\\""']) doesnt work. Its definately a problem with one of the million backslashes and quotes present, but I'm not able to figure it out. What am I doin