Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

read excel file spyder

import pandas as pd

df = pd.read_excel (r'C:UsersRonDesktopProduct List.xlsx') #place "r" before the path string to address special character, such as ''. Don't forget to put the file name at the end of the path + '.xlsx'
print (df)
Source by datatofish.com #
 
PREVIOUS NEXT
Tagged: #read #excel #file #spyder
ADD COMMENT
Topic
Name
7+5 =