我有一个简单的生成器来给我一组坐标的排列。我希望使用以下代码将每个新排列保存到数组中的元素:
import random
def poss_comb(coord):
spin=random.shuffle
if spin:
spin(coord)
yield (coord)
...
a=[]
for n in xrange(0,10):
for item in poss_comb(coord):
print item
a.append(item)
然而,当打印结果时,打印item
给了我我想要的:
['0 1', '', '1 2', '1 3']
['0 1', '', '1 2', '1 3']
['1 2', '0 1', '1 3', '']
['0 1', '1 2', '', '1 3']
['1 3', '', '1 2', '0 1']
['1 3', '1 2', '0 1', '']
['0 1', '', '1 3', '1 2']
['1 2', '0 1', '', '1 3']
['1 2', '1 3', '', '0 1']
['', '1 2', '1 3', '0 1']
而打印list a
提供了一个数组,其中每个元素都是最后一个排列的副本。
有什么更好的方法来做到这一点?