假设我有一个函数
def NewFunction():
return '£'
我想打印一些东西,前面有一个磅号,当我试图运行这个程序时,它打印一个错误,显示这个错误消息:
SyntaxError: Non-ASCII character '\xa3' in file 'blah' but no encoding declared;
see http://www.python.org/peps/pep-0263.html for details
有人能告诉我如何在返回函数中包含一个磅号吗?我基本上是在一个类中使用它,并且它在'__str__'
部分中包含了磅号。