2023-08-01から1日間の記事一覧

{Python}ファイルの文字コード変換

https://www.whyit.work/entry/2018/02/20/224153 import codecs #テストファイル作成 f = open('test1.txt', 'w', encoding='shift_jis')f.write('テストファイルです')f.close() # SJIS -> UTF8 変換 f = codecs.open('test1.txt', 'r', encoding='shift-j…