如何将一个脚本运行到另一个python

时间:2019-07-16 13:47:16

标签: 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

0 个答案:

没有答案