I read that in order to change the values in a 2D array, you just need to specify the index of the array in which our number is located, then specify the index of the number already in the array itself. But for some reason it does not work properly . I want to change in 2 tables, 3 values (index 1,2) and not all. Here's what the console outputs
sim=str(input('Введите символ для перемещения- '))
dlin=int(input('Введите количество строк в длину- '))
hi=int(input('Введите количество строк в высотку- '))
text=[[' ']*dlin]*hi
text[1][2]=sim
for i in text:
print(i)
If you write an array manually and use this method, it works I do not know what to do I job in VS code