如何在python中将元素插入2D数组的指定索引中

问题描述 投票:0回答:1

如何在python中的2D数组的指定索引中插入元素(注释版本:没有更多上下文)

N=int(input()) 
A = [] 
for i in range(N): 
    c = [int(x) for x in input().split()][:N] 
    A.append(c) 
A_A = [] 
for j in range(N): 
    for k in range(N): 
        d=0 
        s=((A[j][k])*(A[k][j])) 
        d=s+d 
        print(d) 
        A_A[j][k].append(d) 
        print(A_A)`
python list append
1个回答
0
投票

如果需要插入,则必须使用list.insert

https://docs.python.org/3.8/tutorial/datastructures.html#more-on-lists

© www.soinside.com 2019 - 2024. All rights reserved.