What's the difference between 'coding=utf8

2020-05-16 00:08发布

问题:

Is there any difference between using

#coding=utf8

and

# -*- coding: utf-8 -*-

What about

# encoding: utf-8

回答1:

There is no difference; Python recognizes all 3. It looks for the pattern:

coding[:=]\s*([-\w.]+)

on the first two lines of the file (which also must start with a #).

That's the literal text 'coding', followed by either a colon or an equals sign, followed by optional whitespace. Any word, dash or dot characters following that pattern are read as the codec.

The -*- is an Emacs-specific syntax; letting the text editor know what encoding to use. It makes the comment useful to two tools. VIM supports similar syntax.

See PEP 263: Defining Python Source Code Encodings.