python淺拷貝和深度拷貝

經過代碼和結果來理解淺拷貝和深度拷貝,先來看看python中有那些常見的淺拷貝方法:python 1.使用數據類型自己的構造器:app l1 = [1,2,3] l2 = list(l1) l1 == l2 #True l1 is l2 #False #l2就是l1的淺拷貝,set、dict與上面的淺拷貝一致 t1 = (1,2,3) t2 = tuple(t1) t1 == t2 #T
相關文章
相關標籤/搜索