python中redis获得到的值是带b'**'

Posted 星星放飞

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python中redis获得到的值是带b'**'相关的知识,希望对你有一定的参考价值。

原因在于在python中从Redis取出的Sting都变成bytes格式

解决一

# 加上decode_responses=True即可解决

redis_store = redis.StrictRedis(host=‘127.0.0.1‘, port=6379, decode_responses=True)

解决二

取值时后面加上decode()

redis_store.get("name:%s"%name).decode()

 

以上是关于python中redis获得到的值是带b'**'的主要内容,如果未能解决你的问题,请参考以下文章

在Redis中存储了str的值是中文“我们”,而Shell下用get获取到的str的值为:xe6x88x91xe4xbbxac

Python创建和访问字典

Python_Print函数

Python自定义函数

PCA分析中,主成分PC1PC2的值是怎么算出来的

python 中max((1,2,3,)*2)的值是?