写程序发现python 二维列表的复制不能像一维 直接用 list() 或者 copy()函数 需要分开每一项使用如下代码 temp=[cells[i][:] for i in range(len(cells))]