gistlib
main.pyimport pandas as pd # Specify the sheet name in the 'sheet_name' parameter df = pd.read_excel('your_file.xlsx', sheet_name='Sheet1') # Display the data retrieved from the Excel sheet print(df) 195 chars8 lines
import pandas as pd # Specify the sheet name in the 'sheet_name' parameter df = pd.read_excel('your_file.xlsx', sheet_name='Sheet1') # Display the data retrieved from the Excel sheet print(df)
gistlibby LogSnag