I'm trying to read a 2-D table but when I put the values and insert them into the index of the print function, I get an error.
The table is 6x6. Even if I write 1 as column and 1 as line I get the error again.
My code:
line = input('Do you wanna the object in the line:...>>>')
column = input('Do you wanna the object in the column:...>>>')
print ('Query line: Column:',column, ' Line:', line, line[int(line)][int(column)])