我正在尝试从二维数组中删除数字 5d = [[1,2,3],[4,5,6]]d[1][2].pop()#number 5 should be poppedprint(d)但我不断收到此错误代码AttributeError: 'int' object has no attribute 'pop' 查看完整描述