Python 파일 인 코딩 은 UTF 16 을 사용 할 수 없습니다.

1699 단어 python
    1. The complete Python source file should use a single encoding.
       Embedding of differently encoded data is not allowed and will
       result in a decoding error during compilation of the Python
       source code.

    Python , ( : GBK, BIG ), 。
    Any encoding which allows processing the first two lines in the way indicated above is allowed as source code encoding, this includes ASCII compatible encodings as well as certain multi-byte encodings such as Shift_JIS. It does not include encodings which use two or more bytes for all characters like e.g. UTF-16. The reason for this is to keep the encoding detection algorithm in the tokenizer simple.
, ASCII , SHIFT_JIS。 , UTF-16( : Unicode, SHIFT_JIS ,GBK , ASCII , Python )。 , 。

여기 서 발췌:
http://legacy.python.org/dev/peps/pep-0263/
 
# -*- coding: UTF-8 –*-#coding=utf-8#coding:utf-8#coding=gbk
결론:utf-8 을 사용 할 수 있 습 니 다.크로스 플랫폼 과 관련 될 때 BOM 을 가지 고 가지 않 아 도 GBK 를 사용 할 수 있 지만 utf 16 을 사용 할 수 없습니다.그러나 재 미 있 는 것 은 저 는 PyScripter 를 IDE 프로 그래 밍 으로 사용 합 니 다.소스 코드 에 중국어 주석 이 있 고 Python 파일 을 UTF 16-LE 로 바 꾼 후에 프로 그래 밍 과 실행 에 문제 가 없습니다.예 를 들 어 200 을 정확하게 표시 할 수 있 는 장점 도 있 습 니 다. 181 s,utf 8 시 에 난 장 판이 있 습 니 다.하지만 발표 할 때 는 그 러 지 마 세 요.
이 문장 은 괜찮다.http://www.crifan.com/python_head_meaning_for_usr_bin_python_coding_utf-8/http://www.jb51.net/article/26543.htm

좋은 웹페이지 즐겨찾기