我有一個包含在目錄中的.txt文件列表。每個文件可能有多行。 Python腳本可能會剝離該目錄中包含的所有文件的所有換行符?結果文件應該只有一行包含所有文本。Python腳本從包含在目錄中的.txt文件中去除新行
import os
os.chdir("/home/Pavyel/Desktop/Python Programs")
for i in os.listdir(os.getcwd()):
if i.endswith(".txt") :
f = open(i)
contents = f.read()
new_contents = contents.replace('\n', '')
print i
continue
else:
continue
可能有很多腳本......你有沒有試過寫一個呢? – mhawke
進口OS os.chdir( 「/家/ iitp /桌面/ Python程序」) 因爲我在os.listdir(os.getcwd()): 如果i.endswith( 「TXT」): ˚F =開放(I) 內容= f.read() new_contents = contents.replace( '\ n', '') 打印我 繼續 其他: 繼續 – Pavyel