[Tutor] Regular expressions

2006-06-24 Thread ravi sankar
hello all we are doing an intranet portral search.we had a look at the tutorials for Regular expressions...we need an insight on how to implement this.we r in the process of developing a unified search...--  regards,   ravi. ___ Tutor maillist - Tu

Re: [Tutor] search engine

2006-06-24 Thread Bob Gailer
vinodh kumar wrote: > hai all, > i am a student of computer science dept. i have planned to > design a search engine in python..i am seeking info about how to > proceed further. > i need some example source code [snip] On further thought - I think my definition of search engin

Re: [Tutor] Is this correct syntax for what I want?

2006-06-24 Thread Nathan Pinno
Alan and all, Ok, so I changed it to a dictionary, and when I tested it, this error came up: Traceback (most recent call last): File "C:\Python24\Account Tracker.py", line 91, in -toplevel- printall() File "C:\Python24\Account Tracker.py", line 49, in printall print account,"\t $",ac

Re: [Tutor] search engine

2006-06-24 Thread vinodh kumar
On 6/25/06, Terry Carroll <[EMAIL PROTECTED]> wrote: On Sat, 24 Jun 2006, vinodh kumar wrote:>   i am a student of computer science dept. i have planned to design> a search engine in python..i am seeking info about how to proceed further.What are you searching?                   hai,      

Re: [Tutor] search engine

2006-06-24 Thread Terry Carroll
On Sat, 24 Jun 2006, vinodh kumar wrote: > i am a student of computer science dept. i have planned to design > a search engine in python..i am seeking info about how to proceed further. What are you searching? ___ Tutor maillist - Tutor@pyt

Re: [Tutor] Is this correct syntax for what I want?

2006-06-24 Thread Alan Gauld
> The data structure is: > mydata = [(Checking, 12.50),(Savings, 34.50)] > > And I want the result to look like this: > mydata = [(Checking, 19.50),(Savings, 34.50)] > > So how do I do this? OK, The problem is that you cannot change the contents of a tuple, you can only create a new tuple. The

Re: [Tutor] search engine

2006-06-24 Thread Bob Gailer
vinodh kumar wrote: > hai all, > i am a student of computer science dept. i have planned to > design a search engine in python..i am seeking info about how to > proceed further. > i need some example source code That is an ambitious project. I wonder whether this is "homework".

[Tutor] search engine

2006-06-24 Thread vinodh kumar
hai all,  i am a student of computer science dept. i have planned to design a search engine in python..i am seeking info about how to proceed further. i need some example source code --      __

Re: [Tutor] critique my script!

2006-06-24 Thread Alan Gauld
I can't really comment on the GTk bits because I've never used it. >From what I can see it looks like a fairly standard type of GUI framework however. A couple of comments: > class Conversion_GUI: > > def print_celsius(self, widget): > print "Degrees Celsius: %.2f" % self.degC I assume