How can i use Spread Sheet as Data Store
Terry Reedy
tjreedy at udel.edu
Mon May 18 15:12:50 EDT 2009
Kalyan Chakravarthy wrote:
> Hi All,
> I have data in Spread Sheet ( First Name and Last Name),
> how can i see this data in Python code ( how can i use Spread Sheet as
> Data Store ) .
I you have a choice, a plain text file is MUCH easier.
Or, you can output a plain text data.csv (comma-separated variable) file
from the spreadsheet and read that with the csv module.
More information about the Python-list
mailing list