SyntaxError: Non-UTF-8 code starting with xxx

问题:

SyntaxError: Non-UTF-8 code starting with 'xba' in file E:/placement/placement/Placement Test/clTest.py on line 6, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details

运行结果:

原因:编码格式不对

解决办法:

把相应Python程序文件的编码转成UTF-8格式

1、在文件第一行添加# encoding:utf-8(注意 一定要是在第一行)

运行结果:

2.在文件第一行添加# -*- coding: gbk -*-

原文出处:【编码格式错误】SyntaxError: Non-UTF-8 code starting with

原文地址:https://www.cnblogs.com/kaerxifa/p/12604155.html