# -*- coding: utf-8 -*- """SampleLoader.ipynb Automatically generated by Colab. Original file is located at https://colab.research.google.com/drive/1GI5Ho9Ad15SgzLw6d8bErAwd8IZTlgPr """ import pandas as pd; file_path = 'DigitalNomadPolicyDataSet.xlsx'; df_sheet1 = pd.read_excel(file_path, sheet_name=0); print("Data from Sheet 1:\n", df_sheet1.head()); df_sheet2 = pd.read_excel(file_path, sheet_name=1); print("Data from Sheet 2:\n", df_sheet2.head())