2017-04-10 34 views
0

我有一個非常大的.txt文檔存儲庫,它具有相同的命名方案。我想編寫一個簡單的Python腳本來在文件名的特定點添加一個空格。使用Python在文件名中添加空格

當前名稱方案:

約翰-Doe0001.txt

約翰-Doe0002.txt

約翰-Doe0003.txt

約翰-Doe0004.txt

預期結果Python腳本之後:

John - Doe0001。 TXT

約翰 - Doe0002.txt

約翰 - Doe0003.txt

約翰 - Doe0004.txt

有什麼建議?

回答

0

試試這個,這將用短劃線和空白替換短劃線。它的基本但它的作品:)

textfile = "John -Doe0001.txt" textfile = textfile.replace('-','- ') x = open(textfile, 'w')