妳好,妳是用python3吧,在前面有個b’表示是bytes
解決方法:
#?百度www.iwithb.comimport?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')