问题:
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 -*-
时间: 2024-11-07 06:35:05