Correct way to define Python source code encoding

后端 未结 6 1696
孤街浪徒
孤街浪徒 2020-11-22 12:15

PEP 263 defines how to declare Python source code encoding.

Normally, the first 2 lines of a Python file should start with:

#!/usr/bin/python
# -*- c         


        
6条回答
  •  长发绾君心
    2020-11-22 12:29

    Check the docs here:

    "If a comment in the first or second line of the Python script matches the regular expression coding[=:]\s*([-\w.]+), this comment is processed as an encoding declaration"

    "The recommended forms of this expression are

    # -*- coding:  -*-
    

    which is recognized also by GNU Emacs, and

    # vim:fileencoding=
    

    which is recognized by Bram Moolenaar’s VIM."

    So, you can put pretty much anything before the "coding" part, but stick to "coding" (with no prefix) if you want to be 100% python-docs-recommendation-compatible.

    More specifically, you need to use whatever is recognized by Python and the specific editing software you use (if it needs/accepts anything at all). E.g. the coding form is recognized (out of the box) by GNU Emacs but not Vim (yes, without a universal agreement, it's essentially a turf war).

提交回复
热议问题