Use pandas to read xlsx file
This commit is contained in:
parent
7d095d1237
commit
4aedc246a3
3 changed files with 38 additions and 20 deletions
8
src/cluster_test/cluster.py
Normal file
8
src/cluster_test/cluster.py
Normal 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")
|
||||
Loading…
Add table
Add a link
Reference in a new issue