File "run.py", line 37, in <module> print str1 UnicodeEncodeError: 'latin-1' codec can't encode characters in position 24-29: ordinal not in range(256)
运行时打印字符串,出现UnicodeEncodeError: 'latin-1' codec can't encode characters的错误,原始字符串应该为utf-8。
python -c "import sys; print sys.stdout.encoding" ISO-8859-1
打印系统编码格式,显示为ISO-8859-1。
这种情况应该为term编码格式不匹配,应这样打印
s = u"\u5149\u66dc\u65e5\u3067\u30e9\u30c6 \u30d4\u30af\u30b7\u30fc\u4e71\u7372\u884c\u304d\u307e\u3059 \u5e0c\u671b\u8005\u52df\u96c6\u4e2d\u3067\u3059\uff3e\uff3e" print s.encode('utf-8') #Output: 光曜日でラテ ピクシー乱獲行きます 希望者募集中です^^