| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

Python ファイルの文字コード

提供: MyMemoWiki
ナビゲーションに移動 検索に移動

Python ファイルの文字コード

Python |

ソースコード・エンコーディング

#!Python2.6
# -*- coding: utf-8 -*-
  • 以下のようなエラーが出る場合、上記対処

<blockquote>SyntaxError: Non-ASCII character '\xe3' in file test.py on line 6, but no encoding declared; see http://www.python.org/peps/pep-0263.html for details</blockquote>

文字コードを指定して、ファイルを開く

import codecs
fd = codecs.open(search_result_file, 'r', 'shift_jis')
    for l in fd:
       print l