Re: Appending data to an excel sheet by python code

2013-09-14 Thread petmertens
Did you consider using xlrd and xlwt? I guess these package provide a solution to your problem. -- https://mail.python.org/mailman/listinfo/python-list

Re: Appending data to an excel sheet by python code

2013-09-14 Thread MRAB
On 14/09/2013 12:33, Manoj Rout wrote: hi i want to append some data to an existing excel sheet by reading from file.But here i am facing 2 problem.first is when i am reading from file. import re It's a good idea to use raw string literals for file paths on Windows. Alternatively, you co

Appending data to an excel sheet by python code

2013-09-14 Thread Manoj Rout
hi i want to append some data to an existing excel sheet by reading from file.But here i am facing 2 problem.first is when i am reading from file. import re file=open("C:\Workspace\WS2\P1\Dave\Generated\src\UART001\UART001_Conf.c","r") strings=re.search(r'(?<=(.Mode = UART_))\w+',file.read()