结果显示:小明小兵小红[u'\u5c0f\u660e', u'\u5c0f\u5175', u'\u5c0f\u7ea2']这段程序,为什么直接x打印中文是没问题的,可是我append以后,就显示成unicode格式?我经常碰到这种情况,求大神解决。
3 回答
慕森王
TA贡献1777条经验 获得超3个赞
No Error, you can try:
for x in name_list: print x
when use print o, you will print the str(o) in python.
Because name_list is a list, str(name_list) return default format like: [u'\u****'] when you list contains unicode string.
- 3 回答
- 0 关注
- 1170 浏览
添加回答
举报
0/150
提交
取消