import redis import chardet r.set("name","我是在Py3保存的中文字符串") ret = r.get("name")#(一个汉字三个字节) print(ret,type(ret)) print(chardet.detect(ret))#chardet.detect检测的字符串越长越准确,越短越不准确。 print(ret.decode("utf-8"))
查看于:http://blog.csdn.net/xiemanr/article/details/72793081