我有一个显示温度的有趣程序。一切正常,直到我尝试从 Conky 使用它:
Traceback (most recent call last):
File "/home/naftuli/Documents/i7zdaemon/get-i7z-value", line 85, in <module>
main()
File "/home/naftuli/Documents/i7zdaemon/get-i7z-value", line 28, in main
get_temp_value(args)
File "/home/naftuli/Documents/i7zdaemon/get-i7z-value", line 63, in get_temp_value
print fmt % (temp if not args.in_fahrenheit else temp * (9.0/5.0) + 32, )
UnicodeEncodeError: 'ascii' codec can't encode character u'\xb0' in position 2: ordinal not in range(128)
为什么这只会在从另一个程序中使用时抛出错误?当我直接从终端运行它时,一切看起来都很好。
这就是我正在做的事情:
fmt = u"%d\u00B0C" if not args.in_fahrenheit else u"%d\u00B0F"
# ...
print fmt % (temp if not args.in_fahrenheit else temp * (9.0/5.0) + 32, )
最后一行杀死了一切。是什么赋予了?