python寫入文本報錯TypeError: expected a string or other character buffer object


今天用python寫入文本,

1 file_object2 = open('result.txt', 'w')
2 file_object2.write(bookid_list)
3 file_object2.close( )

報錯 TypeError: expected a string or other character buffer object

原因:

是寫入文件要求寫入內容是str,直接轉換成str即可,如下:

1 file_object2 = open('result.txt', 'w')
2 file_object2.write(str(bookid_list))
3 file_object2.close()

補充:

還有一個讀操作的代碼:

1 file_object = open('thefile.txt')
2 try:
3      all_the_text = file_object.read( )
4 finally:
5      file_object.close( )

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM