Python 讀寫文件 中文亂碼 錯誤TypeError: write() argument must be str, not bytes+

今天使用Python向文件中寫入中文亂碼,代碼以下:web fo = open("temp.txt", "w+") str = '中文' fo.write(str) fo.close() 後來指定寫入字符串的編碼格式爲UTF-8,出現錯誤TypeError: write() argument must be str, not bytessvg fo = open("temp.txt", "w+")
相關文章
相關標籤/搜索