具体错误形式: 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码读取文...
SyntaxError: Non-ASCII character '/xe6'。代码如下: #无返回值函数hello(相当于过程) def hello(): print 'hello world!' #有返回值函数foo #有返回值函数far,并输出print.其中bar函数中返回元组(元组语法不一定需要带圆括号) def foo(): return ['xyz',10000,-98.6] def bar(): print 'hello world...
具体错误形式: 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码读取文...