继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

"SyntaxError: Non-ASCII character '/xe6' "

holdtom
关注TA
已关注
手记 1844
粉丝 240
获赞 991


近来写小样例,函数与过程返回值时,运行遇到如下问题

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 world2!'

return 'abc',[42,'python'],"Guido"

res = hello()

#调用res时,返回none。无返回值

print res

#调用aTuple时返回 return内容,及返回值内容

aTuple = bar()

print aTuple

调试,查看由于第一行代码都是中文的注释,中文会出现乱码。经过查阅,找到解决方法,即在代码开始的第一行添加如下一条语句:

# This Python file uses the following encoding: utf-8

或添加语句为:

# encoding: utf-8

即可解决中文编码问题

最终的代码如下:

# This Python file uses the following encoding: utf-8

#无返回值函数hello(相当于过程)

def hello():

print 'hello world!'

#有返回值函数foo

#有返回值函数far,并输出print.其中bar函数中返回元组(元组语法不一定需要带圆括号)

def foo():

return ['xyz',10000,-98.6]

def bar():

print 'hello world2!'

return 'abc',[42,'python'],"Guido"

res = hello()

#调用res时,返回none。无返回值

print res

#调用aTuple时返回 return内容,及返回值内容

aTuple = bar()

print aTuple

©著作权归作者所有:来自51CTO博客作者51CTO_李晓鹏的原创作品,如需转载,请注明出处,否则将追究法律责任


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP