From 42992de1a267692269e2094735e75d633e2880a2 Mon Sep 17 00:00:00 2001 From: git-sandro Date: Thu, 23 Oct 2025 11:54:18 +0200 Subject: [PATCH] exercise_2.py --- exercise_2.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 exercise_2.py diff --git a/exercise_2.py b/exercise_2.py new file mode 100644 index 0000000..735b429 --- /dev/null +++ b/exercise_2.py @@ -0,0 +1,12 @@ +import pandas as pd + +def load_dataframe(): + df = pd.read_excel("datasets/hardrock100_results_2022.xlsx", index_col=0) + return df + +def main(): + df = load_dataframe() + print(df.head(3)) + +if __name__ == "__main__": + main() \ No newline at end of file