标签: python-3.x
我有一个python脚本,用于从a到z的组合运行两个字母。我需要将这些组合的输出运行到另一个脚本中,我该如何实现?它必须运行每种组合并产生结果并继续进行下一个组合。
# Get all permutations of length 2 # and length 2 perm = permutations([1, 2, 3], 2) # Print the obtained permutations for i in list(perm): print i