Upload SampleLoader.py
Browse files- SampleLoader.py +10 -0
SampleLoader.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# -*- coding: utf-8 -*-
|
| 2 |
+
"""SampleLoader.ipynb
|
| 3 |
+
|
| 4 |
+
Automatically generated by Colab.
|
| 5 |
+
|
| 6 |
+
Original file is located at
|
| 7 |
+
https://colab.research.google.com/drive/1GI5Ho9Ad15SgzLw6d8bErAwd8IZTlgPr
|
| 8 |
+
"""
|
| 9 |
+
|
| 10 |
+
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())
|