课程
/后端开发
/Python
/初识Python
# -*- coding:utf-8 -*-
L=[u'王',100,u'孙',99]
print L
结果是这个[u'\u738b', 100, u'\u5b59', 99]
2019-03-26
源自:初识Python 4-1
正在回答
# -*- coding: utf-8 -*-
L=['王',100,'孙',99]
print str(L).decode('string_escape')
慕莱坞7047204 提问者
输入解释代码 # -*- coding:utf-8 -*-之后就不用u指令符了。
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序