0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Shift-jisで読み込めない時の対処法

Last updated at Posted at 2023-02-20

結論

encodingに'cp932' を指定

概要

  • ファイルをJupyter notebook等で読み込む際、encodingにShift-jisを指定しているのに何故か読み込めない時に使えます
  • WindowsユーザーでPythonを使用している人特有のエラーです

コード

import pandas as pd

df = pd.read_csv('ファイルパス',encoding='cp932')
  • エラーが起きる原因はShift-jisのバージョンが多いことにあります。
  • 'cp932'はShift-jisのWindowsバージョンという位置づけなので、エンコードを指定して読み込む場合は注意しましょう(Pythonはデフォルトが'utf-8'ということも注意)

参考サイト

0
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?