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
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
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
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,
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
> 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
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".
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
--
__
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