sorry, can you say it more clearly?
In Matlab, I can easily import data from Excel just simply use 'xlsread'
command. How to do that in Python environment? thank u!
Paddy wrote:[color=blue]
> The CSV module?
>[/color]
def GetExcelData(se lf, strFilePath):
""" Extract the data from the Excel sheet.
Returns tuple of tuples representing the rows and cells."""
# The following line extracts
# all the data from sheet 1 of the spreadsheet
return GetObject(strFi lePath).Sheets( 1).UsedRange.Va lue
N/A wrote:
[color=blue]
> Hi,
> Is it possible to import data from Excel for doing numerical analysis in
> Python? If so how? Thank u![/color]
Comment