Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Pandas read excel

import pandas as pd

data = pd.read_excel (r'C:UsersRonDesktopProduct List.xlsx') 
df = pd.DataFrame(data, columns= ['Product'])
print (df)
Source by datatofish.com #
 
PREVIOUS NEXT
Tagged: #Pandas #read #excel
ADD COMMENT
Topic
Name
3+7 =