[Tutor] what does the warning indicate?

2006-06-22 Thread devayani barve
Hi!! I'm new to python and just trying to play around, when I run my program in the interactive shell before executing the program it shows the following warning :    Warning: HOME environment variable points to H: but the path does not exist. RESTART ===

[Tutor] the lambda func

2006-07-06 Thread devayani barve
Hi, I have just started learning python... Following is an example from dive into python:   def info(object,spacing=10,collapse=1):    """Print methods and doc strings.    Takes module,class,list,dictionary or string."""    methodList=[method for method in dir(object) if callable(getattr(object,met

[Tutor] need problems to solve

2006-07-12 Thread devayani barve
Hi, I was wondering where I could get problems in python for practicing. Thanks Regards   Devayani ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] I cant find link

2006-07-14 Thread devayani barve
Hi I'm a begginner in python,tried the link pythonchallenge.com solved the first level, but i dont know how to go to the next one. Can somebody tell me how?   Thanks ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] I cant find link

2006-07-14 Thread devayani barve
ttp://www.pythonchallenge.com/pc/def/ .html On 7/14/06, Kent Johnson < [EMAIL PROTECTED]> wrote: devayani barve wrote:> Hi> I'm a begginner in python,tried the link pythonchallenge.com> <http://pythonchallenge.com/ > solved the first level, but i dont know> how to

[Tutor] python challenge 2

2006-07-17 Thread devayani barve
this is what i did for level 2 of python challenge:   dict={'a':'c','b':'d','c':'e','d':'f','e':'g','f':'h','g':'i','h':'j','i':'k','j':'l','k':'m','l':'n','m':'o','n':'p','o':'q','p':'r','q':'s','r':'t','s':'u','t':'v','u':'w','v':'x','w':'y','x':'z','y':'a','z':'b','.':'.',"'":"'","(":"(",")":")

[Tutor] format string

2006-07-19 Thread devayani barve
Hi   This is my program: import urllibans='y'while ans=='y':        name=raw_input("Enter search:")    name=name.replace(' ','+')    name=name.replace('&','%26')    go_url=" http://www.google.co.in/search?hl=en&q=%s" %name+"&meta=lr\%3Dlang_en"    print go_url    page = urllib.urlopen(go_url).read

[Tutor] DOM using python

2006-08-30 Thread devayani barve
Hi all, I'm using python 2.3; I want to learn dom implementation in python right from the very basics do i need to install pyxml or anything else?   ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] xml dom

2006-09-06 Thread devayani barve
hi I wanted to know if there was any other source of learning dom implementation apart from python library reference? ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

[Tutor] html processing

2006-12-02 Thread devayani barve
I have a table in hmtl and i want to write a program so that I can insert a column within it.. Can someone tell me what to use . as in dom??? Just want to know how to go about it!!! Thanks ___ Tutor maillist - Tutor@python.org http://mail.python.o