I am trying to perform a loop over a set of columns as below:
for i in range(len(parent)):
for j in range(4):
table.cell(i, j).text = str(locals()["child_" + i + "_" + j])
I am getting an error
TypeError: can only concatenate str (not "int") to str
Error in line table.cell(i, j).text = str(locals()["child_" + i + "_" + j])