Re: How can I use python for file processing

2007-08-26 Thread Ricardo Aráoz
Marc 'BlackJack' Rintsch wrote: > On Sun, 26 Aug 2007 06:05:11 +, [EMAIL PROTECTED] wrote: > >> I am trying to use python for file processing. >> Suppose I have a file like this: >> I want to build a Hashmap between the line "begin_QOS_statistics" and >> "end_QOS_statistics" >> and for each li

Re: How can I use python for file processing

2007-08-25 Thread Marc 'BlackJack' Rintsch
On Sun, 26 Aug 2007 06:05:11 +, [EMAIL PROTECTED] wrote: > I am trying to use python for file processing. > Suppose I have a file like this: > I want to build a Hashmap between the line "begin_QOS_statistics" and > "end_QOS_statistics" > and for each line I want to put the first text as the ke

How can I use python for file processing

2007-08-25 Thread [EMAIL PROTECTED]
Hi, I am trying to use python for file processing. Suppose I have a file like this: I want to build a Hashmap between the line "begin_QOS_statistics" and "end_QOS_statistics" and for each line I want to put the first text as the key of the hash table and the second text as the value. Received R