我有2個文件的src和dest蟒蛇:通過的其他文件
#cat src
lundi,mardi,mercredi,jeudi
# cat dest
janvier fevrier
mars avril mai
juillet aout
septembre octobre
與Python,我想的內容替換該文件DEST字符串「麥」的內容在文件中替換字符串文件src。其結果時便會
# cat dest
janvier fevrier
mars avril lundi,mardi,mercredi,jeudi
juillet aout
septembre octobre
感謝您的幫助
我嘗試這些腳本,但它是負
1-
import os, sys
with open("src","r") as s:
with open("dst","w") as d:
for ligne in dst:
sligne=ligne.rstrip().split(" ")
for n in sline:
sline=mai
dst.str.replace("mai","src")
2-
d = open("dst","w")
s = open("src","r")
data=s.read()
s.close()
for n in dst:
data = data.replace("mai","s")
d.write(data)
d.close()
歡迎來到Stack Overflow!我們鼓勵你[研究你的問題](http://stackoverflow.com/questions/how-to-ask)。如果你已經[嘗試了某些東西](http://whathaveyoutried.com/),請將其添加到問題中 - 如果沒有,請先研究並嘗試您的問題,然後再回來。 – 2012-09-11 14:07:42
你可以在這裏閱讀Python字符串http://docs.python.org/library/string.html –