无法将度数符号输入 raw_input

Can't get a degree symbol into raw_input

我的代码中的问题看起来像这样:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

deg = u'°'
print deg
print '40%s N, 100%s W' % (deg, deg)
codelim = raw_input('40%s N, 100%s W)? ' % (deg, deg))

我正在尝试为 latitude/longitude 字符串中的定界符生成一个 raw_input 提示,该提示应包含此类字符串的示例。 print degprint '40%s N, 100%s W' % (deg, deg) 都工作正常——它们分别 return“°”和“40° N,100° W”——但是 raw_input 这一步每次都失败。我得到的错误如下:

Traceback (most recent call last):
  File "C:\Users\[rest of the path]\scratch.py", line 5, in  <module>
    x = raw_input(' %s W")? ' % (deg))
UnicodeEncodeError: 'ascii' codec can't encode character u'\xb0' in position 1:
ordinal not in range(128)

我以为我可以按照 here 的指示添加编码 header 来解决问题(实际上这确实可以打印度数符号),但我将 otherwise-safe 字符串添加到 raw_input 后,仍然出现 Unicode 错误。这是怎么回事?

尝试将提示字符串编码为 stdouts 编码,然后再将其传递给原始输入

#!/usr/bin/python
# -*- coding: UTF-8 -*-

import sys

deg = u'°'

prompt = u'40%s N, 100%s W)? ' % (deg, deg)
codelim = raw_input(prompt.encode(sys.stdout.encoding))

40° N, 100° W)?