0

I need your help to transfer data to array form shape. I know how to import excel sheet to python using this

Data = pd.read_excel('filename.xls',sheetname='1',header=None)

But when this Data in python, it is not in the numpy array form. cz later I want use this data like array in numpy.

can you help me (I am new in python programming )

Thank you in advance

Mowem kjk
  • 1
  • 3

1 Answers1

0

As suggested in Reading/parsing Excel (xls) files with Python I'd suggest looking at xlrd from www.python-excel.org

Community
  • 1
  • 1
Jim Dennis
  • 15,808
  • 11
  • 58
  • 108