Python が UnicodeDecodeError でファイルを読み込む: 'gbk' コーデックは xx 位置のバイト 0x80 をデコードできない: 解決策
2022-02-21 22:41:44
Pythonは、ファイルを読み込む際に
with open('article.txt') as f: # open new text
text_new = f.read() # Read text data
エラーが発生しました。
UnicodeDecodeError: 'gbk' codec can't decode byte 0x80 in position 145: illegal multibyte sequence
この時点で2つの解決策があります。
1. 最初の構文を次のように変更します。
with open('article.txt','rb') as f: # open a new text
text_new = f.read() # Read text data
2. 最初の構文を次のように変更します。
with open('article.txt','r',encoding='UTF-8') as f: # open a new text
text_new = f.read() # Read text data
関連
-
TensorFlowのエラー:ハッシュ化できない型:'numpy.ndarray'エラー
-
concat を使用して 2 つのデータフレームを結合する際のエラー
-
adb デバイス オフライン
-
'dict' オブジェクトには 'has_key' という属性がありません。
-
Solve ImportError: cannot import name 'np_utils' from 'tensorflow.keras.utils'
-
PythonのエラーNo module named 'pkg_resources' を解決する。
-
Python OSError: [Errno 22] 無効な引数: solution
-
Python djangoプログラミングエラーのコツ、自作プログラミングで遭遇したエラーのまとめ 2018年11月8日更新
-
アルゴリズム図 1.2 二項対立型ルックアップ TypeError: リストのインデックスは整数またはスライスでなければならず、float ではありません 解答
-
Python error TypeError: 'type' object is not subscriptable
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
DataFrameのソート問題
-
SyntaxError: 構文が無効です。
-
python3 のモジュール "importlib._bootstrap" に "SourceFileLoader" という属性がない問題を解決する。
-
仮想環境を作成するコマンドが見つからない virtualenv: コマンドが見つからない
-
Python Hashmap/Dictionary 使用ガイド
-
[Pythonノート】spyderのClearコマンド
-
Python による pyserial 経由でのシリアルポートの読み取りと書き込み
-
TypeError: 'str' と 'int' のインスタンスの間で '<' はサポートされていません。
-
UnicodeDecodeError: 'ascii' コーデックは位置 0 のバイト 0xe5 をデコードできません: 序数が範囲 (128) にありません。
-
python 1e-5とはどういう意味ですか?