标签:unicode 中文 int 解决 bin nic decode env utf-8
#!/usr/bin/env python
#coding=utf-8
s="中文"
if isinstance(s, unicode):
#s=u"中文"
print s.encode(‘gb2312‘)
else:
#s="中文"
print s.decode(‘utf-8‘).encode(‘gb2312‘)
标签:unicode 中文 int 解决 bin nic decode env utf-8
原文地址:http://www.cnblogs.com/jinjidedale/p/6042449.html