代码改变世界

python的tips:字符和字符串的问题

2017-06-07 16:23  很大很老实  阅读(282)  评论(0编辑  收藏  举报

今天,自己建立了一个redis,python去访问的时候,

设置可以key以后,再读取key,返回的是字符,

和字符串比较,需要做一个转换,

信息如下;

import redis
r=redis.Redis(host='172.16.11.59',port=6379,db=0)
if(r.set('wcf','123')):
if((r.get('wcf')).decode(encoding='utf-8', errors='strict')=='123'):
print('字符变为字符串OK')
if ((r.get('wcf')) == '123'.encode(encoding='utf-8', errors = 'strict')):
print('字符串变为字符OK')