1

我设法修改了我在互联网上找到的示例代码,以从一个文件夹中找到一组文件的所有可能组合,成对 2。

如果我有一个包含以下文件的文件夹test : file1、file2、file3、file4并运行以下代码:

import os, itertools, glob
folder = "test"

files = glob.glob(folder + "/*")
counter = 0
for file1, file2 in itertools.combinations(files, 2):
  counter = counter + 1
  output = file1 + " and " + file2
  print output, counter

我的输出是这样的:

test/file1 and test/file2 1
test/file1 and test/file3 2
test/file1 and test/file4 3
test/file2 and test/file3 4
test/file2 and test/file4 5
test/file3 and test/file4 6

这非常适合列出所有可能的 2 个文件组而不重复。现在,由于我对for循环进行了硬编码,因此在将其扩展到“x”文件组时遇到问题,但要保持代码简单。IE,我希望用户选择“x”,这样如果他选择 3,脚本将显示以下输出:

test/file1 and test/file2 and test/file3 1
test/file1 and test/file2 and test/file4 2
test/file1 and test/file3 and test/file4 3
test/file2 and test/file3 and test/file4 4

整个想法并不是在标准输出上实际显示输出,而是将它们用作子进程调用中的参数。

有什么建议么?

4

1 回答 1

4
x=3

for combination in itertools.combinations(files, x):
  counter = counter + 1
  output = " and ".join(combination)
  print output, counter

命令行参数可以用sys.argv

于 2012-08-05T16:13:58.923 回答