December 2015
Beginner to intermediate
202 pages
4h
English
While many people will tell you to get data out of Excel as quickly as you can, Pandas provides a function to import data directly from Excel files. This saves you the time of converting the file.
import pandas as pd
customer_data_file = 'customer_data.xlsx'
read_excel method provided by Pandas, as follows:customers = pd.read_excel(customer_data_file, sheetname=0, header=0, index_col=False, keep_default_na=True )
head() command ...Read now
Unlock full access