當前位置:成語大全網 - 新華字典 - 用python查詢redis數據,結果中前面為什麽總是有字母b

用python查詢redis數據,結果中前面為什麽總是有字母b

妳好,妳是用python3吧,在前面有個b’表示是bytes

解決方法:

#?百度www.iwithb.com

import?redis

import?config.config?as?conf

redis?=?redis.Redis(host=conf.REDIS_HOST,?port=conf.REDIS_PORT,?password=conf.REDIS_PASSWORD)

redis.sadd('iwithb',"hello")

url?=?redis.spop("iwithb")

print(str(url,?encoding='utf-8'))

#這樣就沒有b了,註意str(url,?encoding='utf-8')