input:
letters = [['a', 'b', 'c'], ['a', 'b', 'c']]
row= 0
column=0
output
[['b', 'c'], ['a', 'b', 'c']]
I tried to do this:
letters[0].remove(0)
but it gives me a value error, while when I use pop like this:
letters[0].pop(0)
it does what I need but the problem with pop is that it returns me something while I just need the item to be removed