Horje
how to read excel file in jupyter notebook Code Example
how to read excel file in jupyter notebook
import pandas as pd

df = pd.read_excel (r'Path where the Excel file is stored\File name.xlsx', sheet_name='your Excel sheet name')
print (df)
jupyter read excel
import pandas as pd

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




Python

Related
read json file python utf8 Code Example read json file python utf8 Code Example
NAN values count python Code Example NAN values count python Code Example
Python can't subtract offset-naive and offset-aware datetimes Code Example Python can't subtract offset-naive and offset-aware datetimes Code Example
pandas read tab separated file Code Example pandas read tab separated file Code Example
how to code a clickable button in python Code Example how to code a clickable button in python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7