DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Python Utf8 Convert To Gbk
// description of your code here
def utf2gbk(s,ignore=True):
if ignore:
return unicode(s,'utf8','ingore').encode('gb18030','ingore')
else:
return unicode(s,'utf8').encode('gb18030')





