By "shallow copying" it means the content of the dictionary is not copied by value, but just creating a new reference. >>> a = {1: [1,2,3]} >>> b = a.copy() > ...
確定! 回上一頁