在Python2命令行中:
a="中文"
a
‘\xd6\xd0\xce\xc4’
b=u"中文"
b
u’\u4e2d\u6587’
b.encode('gb18030')
所以,unicode转str只需要encode(‘gb18030’)即可。