我真的很喜欢编程,到目前为止找不到令人满意的答案。我使用python,我想合并三个文本文件接收所有可能的单词组合。我有3个文件:
第一档:
line1
line2
line3
第二个文件(前缀):
pretext1
pretext2
pretext3
第三个文件(后缀):
suftext1
suftext2
suftext3
我已经使用过.read()并且我的变量包含每个文本文件的列表。现在我想编写一个函数将这3个文件合并为1,它应该如下所示:
OUTPUTFILE:
pretext1 line1 suftext1 #this is ONE line(str)
pretext2 line1 suftext1
pretext3 line1 suftext1
pretext1 line1 suftext2
pretext1 line1 suftext3
等等,你明白了
我希望1个文本文件中的所有可能组合作为输出。我想我必须在循环中使用循环?!
答案 0 :(得分:2)
在这里,如果我的问题是正确的。 首先,您必须使用os包专注于正确的文件夹。
import os
os.chdir("The_path_of_the_folder_containing_the_files")
然后你打开三个文件,把这些文字放到列表中:
file_1 = open("file_1.txt")
file_1 = file_1.read()
file_1 = file_1.split("\n")
file_2 = open("file_2.txt")
file_2 = file_2.read()
file_2 = file_2.split("\n")
file_3 = open("file_3.txt")
file_3 = file_3.read()
file_3 = file_3.split("\n")
使用循环在输出文件中创建所需的文本:
text_output = ""
for i in range(len(file_2)):
for j in range(len(file_1)):
for k in range(len(file_3)):
text_output += file_2[i] + " " + file_1[j] + " " + file_3 [k] + "\n"
然后在输出文件中输入该文本(如果该文件不存在,则会创建它)。
file_output = open("file_output.txt","w")
file_output.write(text_output)
file_output.close()
答案 1 :(得分:0)
虽然现有的答案可能是正确的,但我认为这是一个引入库函数绝对是可行的方法。
import itertools
with open('lines.txt') as line_file, open('pretext.txt') as prefix_file, open('suftext.txt') as suffix_file:
lines = [l.strip() for l in line_file.readlines()]
prefixes = [p.strip() for p in prefix_file.readlines()]
suffixes = [s.strip() for s in suffix_file.readlines()]
combos = [('%s %s %s' % (x[1], x[0], x[2]))
for x in itertools.product(lines, prefixes, suffixes)]
for c in combos:
print c