StackOverflow 文件 Python Language 教程 複製資料 複製字典 複製字典 Created: November-22, 2018 字典物件的方法為 copy。它執行字典的淺表副本。 >>> d1 = {1:[]} >>> d2 = d1.copy() >>> d1 is d2 False >>> d1[1] is d2[1] True 執行淺拷貝複製資料