exercise_2.py
This commit is contained in:
parent
689e8a8fc7
commit
42992de1a2
12
exercise_2.py
Normal file
12
exercise_2.py
Normal file
@ -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()
|
||||
Loading…
x
Reference in New Issue
Block a user