我的項目是使用python從單個txt文件寫入和讀取不同的變量。如何從python中的單個文件中讀寫
myFile = open("Mygame.txt","w")
skill = str(skill)
strength=str\n(strength)
myFile.write(skill)
myFile.write(strength)
myFile.close()
我試過使用\ n但是這似乎不適用於變量只打印語句。
我的項目是使用python從單個txt文件寫入和讀取不同的變量。如何從python中的單個文件中讀寫
myFile = open("Mygame.txt","w")
skill = str(skill)
strength=str\n(strength)
myFile.write(skill)
myFile.write(strength)
myFile.close()
我試過使用\ n但是這似乎不適用於變量只打印語句。
嘗試類似這樣的東西。
import shutil
with open('test') as old, open('newtest', 'w') as new:
for line in old:
if line.rsplit('|', 1)[-1].strip() == 'number3':
new.write('this is replacement|number7\n')
else:
new.write(line)
shutil.move('newtest', 'test')
就目前而言,我很困惑你在問什麼。你可以添加更多的細節和/或代碼? – squiguy
使用[json](http://docs.python.org/2/library/json.html)進行變量讀寫。 –
你能分享一下你寫的代碼來幫助我們看看你的問題在哪裏嗎?你正在閱讀的文件是什麼樣的? – JonathanV