Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to read excel file in jupyter notebook

import pandas as pd

df = pd.read_excel (r'Path where the Excel file is storedFile name.xlsx', sheet_name='your Excel sheet name')
print (df)
Comment

jupyter read excel

import pandas as pd

df = pd.read_excel (r'Path where the Excel file is storedFile name.xlsx', sheet_name='your Excel sheet name')
print (df)
Comment

PREVIOUS NEXT
Code Example
Python :: torch cos 
Python :: django 3 create async rest api 
Python :: python docker 
Python :: python monitor directory for files count 
Python :: Maximize Difference codechef solution 
Python :: subscriptable meaning in python 
Python :: The options auto_now, auto_now_add, and defa ult are mutually exclusive. Only one of these options may be present. 
Python :: python iteration 
Python :: target encoder sklearn example 
Python :: python tkinter treeview column width auto 
Python :: uninstall python ubuntu 18.04 
Python :: django permissions 
Python :: python vector class 
Python :: how to plot a pandas dataframe with matplotlib 
Python :: how to remove last item from list python 
Python :: bash escape double quote windows batch 
Python :: false in py 
Python :: python increase one item in list 
Python :: pandas sum group by 
Python :: functools.cached_property objects in python 
Python :: python remove second occurrence of character in string 
Python :: how to make every item compare the rest items of list in python 
Python :: create and activate virtual environment with python 3 
Python :: file handling in python append byte 
Python :: python int to byte 
Python :: remove figure label 
Python :: how to unimport a file python 
Python :: django many to many post update method via rest 
Python :: select element using Css selector in python 
Python :: how to get cpu model in python 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =