具体错误形式:SyntaxError: Non-ASCII character '\xe9' in file hello.py on line 1, but no
"SyntaxError: Non-ASCII character '/xe6' " 近来写小样例,函数与过程返回值时,运行遇到如下问题 SyntaxError: Non-ASCII character '/xe6'。代码如下: #无返回值函数hello(相当于过程) def hello(): print 'hello world!' #有返回值函数foo #有返回值函数far,并输出print.其中bar函数中返回元组(元组语法不...
具体错误形式: SyntaxError: Non-ASCII character '\xe9' in file hello.py on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details 解决办法: 在hello.py文件的第一行添加:# -*- coding: utf-8 -*- (或者#coding=utf-8) 原因:Python会默认使用ASCII码读取文...