master
Amir Hossein Moghiseh 2020-12-09 02:29:39 +03:30
commit 442e33b724
2 changed files with 6 additions and 0 deletions

BIN
dataset2.xls 100644

Binary file not shown.

6
exec.py 100644
View File

@ -0,0 +1,6 @@
import pandas as pd
if __name__ == "__main__":
df = pd.read_excel('dataset2.xls', sheet_name="forestfires").to_numpy()
for row in df:
print(row)