I´m developing an app that takes raw data, makes some operations on it and the returns the results on a table. To make this, i have created a series of functions but i can´t get to the final step which is presenting the results in a table.
The final table has 11 rows and 1 column.
I have tried creating classes and functions to achieve the expected result but I can´t seem to achieve it.
I´ll show you the last try:
def Tabula(total_rows,total_columns,datos):
rows = []
for i in range(total_rows):
cols = []
for j in range(total_columns):
e = Entry(window)
e.grid(row=datos[i,:], column=datos[:,j], sticky=NSEW)
cols.append(e)
rows.append(cols)
window.mainloop()