用20個單詞的單個句子創建測試文件。讀取文件,然後插入回車符(\ n)並將測試寫入一個新的文本文件,該文件將由四行五個字組成。如何將單行分割爲多行
這是我迄今爲止
my_file = open("twentywords.txt", "r")
temp_file = open("newfile.text", "w")
i = 1
for words in my_file:
if i%5 == 0:
print(words, file = temp_file)
i = i + 1
我們還沒有學會複雜的工具又是那麼保持它的簡單燉
,但我需要使用\ n工具 – user2016535 2013-02-18 02:56:40