摘要: >>> a=[1,2,3] >>> a.remove(2) >>> a [1, 3] >>> a=[1,2,3] >>> del a[1] >>> a [1, 3] >>> a= [1,2,3] >>> a.pop(1) 2 >>> a [1, 3] 5、将两个矩阵合并: 1) 生成矩阵: imp 阅读全文
posted @ 2018-10-22 11:45 何弈 阅读(653) 评论(0) 推荐(0) 编辑
你好