def matrix():
rows = 10
columns = 9
arr = [[0]*columns]*rows
file = open("blAblA")
for i in range(rows):
for j in range(columns-1):
arr[i][j] = int(file.readline().rstrip("\n"))
print(arr[i])
print("-------------------------------------------------")
for k in range(rows):
print(arr[k])
matrix()
why are these 2 "for" loop gives me different output like this: Image