I hope today you have a great mood, but let's get to the essence of the question.
There is a list:
relations_table = [[0 for i in range(0, len(sounds))] for j in range(0, len(sounds))] for i in relations: relations_table[i.left_sound_id-1][i.right_sound_id-1] = i.weight It looks like this:
[[25, 98, 40, 17, 66, 65, 41, 11, 70, 58], [89, 93, 35, 89, ... How to fill this data in the html table, where the index denotes the row and column of a cell with a value?
If you can sample code. Thank.

