import os
#清除檔案中的文字後關閉
f= open('/home/pi/Documents/test.txt', 'w').close()
#在現有檔案中寫入新文字
f=open('/home/pi/Documents/tmrtV05/test.txt','a')
testStr=('This texts for test \n'+
'and TEST')
f.writelines(testStr)
f.close()
會寫入以下文字到/test.txt中
This texts for test
and TEST