我正在使用 WC -l 来计算文本文档中的行数。但是我在这里遇到了问题。
我得到了一个 python 代码,它将不同的数字组合写入不同的文件。每个文件在单独的行中包含每个组合的编号。
当我使用 wc -l 时,它没有计算最后一行!
下面是python代码:
import os
import itertools
lst = [6,7,8,9,12,19,20,21,23,24,26,27,28,29,43,44]
combs = []
for i in xrange(1, len(lst)+1):
els = [list(x) for x in itertools.combinations(lst, i)]
combs.extend(els)
for combination in els:
combination_as_strings = map(str, combination)
filename = "_".join(combination_as_strings) + ".txt"
filename = os.path.join("Features", filename)
with open(filename, 'w') as output_file:
output_file.write("\n".join(combination_as_strings))
提前致谢,
艾哈迈德