前提打开redis服务,windows打开方式到redis的安装目录命令行输入redis-server
from redis import StrictRedis redis = StrictRedis(host='localhost', port=6379,decode_responses=True) redis.set('name', 'Bob') print(redis.get('name'))
decode_responses默认值为false获取值类型为byte,改成true即可获取字符串。