I want to add a value to an element of a two dimensional list. Instead the value is added to all the elements of the column. Could anyone help?
ROWS=3
COLUMNS=5
a=[[0] * (ROWS)] * (COLUMNS)
for i in range(ROWS):
print (a[i])
print("")
x=5
a[2][1]=a[2][1]+x
for i in range(ROWS):
print (a[i])
Create you list like this:
Because the way you are currently doing it, it actually just repeats the same list object, so changing one actually changes each of them.