Use pandas to read xlsx file

This commit is contained in:
Laborratte 5 2025-06-01 13:31:43 +02:00
parent 7d095d1237
commit 4aedc246a3
Signed by: Laborratte5
GPG key ID: 3A30072E35202C02
3 changed files with 38 additions and 20 deletions

View file

@ -0,0 +1,8 @@
import pandas
def read_excel(path: str):
data = pandas.read_excel(path)
print(data)
if __name__ == '__main__':
read_excel("tests/Beispiel Auswertung.xlsx")