摘要: >>> list_a=[1,2,3,4] >>> list_a [1, 2, 3, 4] >>> list_b=list_a >>> list_b [1, 2, 3, 4] >>> list_a.append(1) >>> list_a [1, 2, 3, 4, 1] >>> list_b [1, 阅读全文
posted @ 2021-04-13 11:15 MoKin_Li 阅读(174) 评论(0) 推荐(0)
摘要: 电脑上安装了Python 2和Python 3,在CMD下,输入:py -2和py -3,可以进行多个版本的切换: 阅读全文
posted @ 2021-04-13 09:54 MoKin_Li 阅读(734) 评论(0) 推荐(0)