I need through the index of an array "column" to access its entire row in order to be able to change the indexes of this row. The part of collecting the indexes I got, but I do not know how to access through this chosen index view the line completely.
list1 = [1, 6, 4, 4, 5]
list2 = [2, 2, 3, 4, 6]
list3 = [3, 9, 8, 7, 3]
list4 = [4, 7, 3, 8, 0]
array = [list1] + [list2] + [list3] + [list4]
column = [line [0] for line in array]
print (column)
Then through the index [0] [1,2,3,4], if I choose 2 [3] I need to return the values [9, 8, 7, 3] so that I can change some number, 5 for example. I hope you've been able to explain.