如果要取消空格,需要使用replace。
f =打開(' 1.txt ')
fr=f.read()
Fdata=fr.replace(',' ')##此處使用。如果文本很大,不要用read,用xreadline進行循環處理。
r =打開(' 2.txt ')
r.write(fdata)
關閉()