Contribution
Joined 18 April 2020
Contribution (talk | contribs) |
Contribution (talk | contribs) |
||
Line 104: | Line 104: | ||
table=[] | table=[] | ||
for y in range(0,len(y_axis)): | for y in range(0,len(y_axis)): | ||
row=[] | |||
for x in range(0,len(x_axis)): | for x in range(0,len(x_axis)): | ||
monzo=[] | monzo=[] | ||
Line 110: | Line 110: | ||
# combine the abscissa monzo and the ordinate monzo | # combine the abscissa monzo and the ordinate monzo | ||
monzo.append(x_axis[x][a]+y_axis[y][a]) | monzo.append(x_axis[x][a]+y_axis[y][a]) | ||
row.append(monzo) | |||
table.append( | table.append(row) | ||
##### SHOW RESULT ##### | ##### SHOW RESULT ##### |