回答編集履歴
1
追記
test
CHANGED
@@ -3,3 +3,9 @@
|
|
3
3
|
> codecs.open(filename, mode='r', encoding=None, errors='strict', buffering=-1)
|
4
4
|
|
5
5
|
[codecs.open](https://docs.python.org/ja/3/library/codecs.html#codecs.open)
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
with codecs.open(filepath, mode='r', encoding='utf-8', erros='ignore') as f:
|
10
|
+
|
11
|
+
などのように引数を与えてあげると改善しそうな気がします。
|