标签: python automation file-handling
这是我的代码
f1 = open("file1.txt").read( ).splitlines( ) f2 = open("file2.txt").read( ).splitlines( ) print list(itertools.product(f1,f2))
我想为目录中的所有文件运行此命令。如何使用python执行此操作。我无法使用glob实现here给出的建议。
答案 0 :(得分:-1)
ap