Re: doubt on csv file

2005-12-15 Thread skip
shiva> am trying to search whtr my string is found in a csv file, if its shiva> not found i have to append it at the last row of a csv file, How shiva> can i do that?? Given that you specified a csv file, I presume you want to maintain the proper semantics. You clearly know how to re

Re: doubt on csv file

2005-12-15 Thread Dan M
On Thu, 15 Dec 2005 16:09:51 -0800, muttu2244 wrote: > hey thanks a lot for that it worked . Excellent! Glad to be of assistance :) -- http://mail.python.org/mailman/listinfo/python-list

Re: doubt on csv file

2005-12-15 Thread muttu2244
hey thanks a lot for that it worked . -- http://mail.python.org/mailman/listinfo/python-list

Re: doubt on csv file

2005-12-15 Thread Dan M
> here is what am trying to do, first am trying to open it in a read > mode, and checking each row by row , if it is not found till my last > row, i want to append it to the last row , so how should i do that. > > file = open ('C:\some.csv','r') > reader = csv.reader(file) > for row in reader: >

doubt on csv file

2005-12-15 Thread muttu2244
hi all am trying to search whtr my string is found in a csv file, if its not found i have to append it at the last row of a csv file, How can i do that?? here is what am trying to do, first am trying to open it in a read mode, and checking each row by row , if it is not found till my last row, i