无法将度数符号转换为raw_input

时间:2015-01-30 22:56:46

标签: python python-2.7 character-encoding python-unicode

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

#!/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))

我正在尝试为纬度/经度字符串中的分隔符字符生成raw_input提示符,并且提示符应包含此类字符串的示例。 print degprint '40%s N, 100%s W' % (deg, deg)都可以正常工作 - 它们分别返回“°”和“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(实际上确实可以打印出度数符号),但我仍然遇到Unicode错误只要我向raw_input添加一个安全的字符串。这是怎么回事?

1 个答案:

答案 0 :(得分:4)

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

#!/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)?