python编码方式有关问题

python编码方式问题:
>>> s ='\xe5\xad\x98\xe5\x9c\xa8\xe8\xa1\xa5\xe4\xb8\x81,\xe4\xbd\x86\xe8\xa1\xa5\xe4\xb8\x81\xe7\x8a\xb6\xe6\x80\x81\xe4\xb8\x8d\xe6\x98\xaf\xe6\x9b\xb4\xe6\x96\xb0\xe6\x80\x81'
>>> s.decode('utf-8')
u'\u5b58\u5728\u8865\u4e01,\u4f46\u8865\u4e01\u72b6\u6001\u4e0d\u662f\u66f4\u65b0\u6001'
>>> s.decode('utf-8').encode('gbk')
'\xb4\xe6\xd4\xda\xb2\xb9\xb6\xa1,\xb5\xab\xb2\xb9\xb6\xa1\xd7\xb4\xcc\xac\xb2\xbb\xca\xc7\xb8\xfc\xd0\xc2\xcc\xac'
>>> s.decode('utf-8').encode('gb2312')
'\xb4\xe6\xd4\xda\xb2\xb9\xb6\xa1,\xb5\xab\xb2\xb9\xb6\xa1\xd7\xb4\xcc\xac\xb2\xbb\xca\xc7\xb8\xfc\xd0\xc2\xcc\xac'

闷,这个怎么转换为中文...
求教.

------解决方案--------------------
Python code
>>> s
'\xe5\xad\x98\xe5\x9c\xa8\xe8\xa1\xa5\xe4\xb8\x81,\xe4\xbd\x86\xe8\xa1\xa5\xe4\xb8\x81\xe7\x8a\xb6\xe6\x80\x81\xe4\xb8\x8d\xe6\x98\xaf\xe6\x9b\xb4\xe6\x96\xb0\xe6\x80\x81'
>>> print s.decode('utf-8')
存在补丁,但补丁状态不是更新态