... copy is slower, because you are making new copies for everything. You will need to import copy module to make a deep copy. a = [[1, 2], [2, 4]]>> import copy >> ...
確定! 回上一頁