解决问题
TypeError: Won't implicitly convert Unicode to bytes; use .encode()
解决思路
TypeError:不会隐式地将Unicode转换为字节
解决方法
对字符串部分,进行.encode()
将
str(v).encode()
nS = int(txn.get('num-samples'))
改为
nS = int(txn.get('num-samples'.encode()))
哈哈,大功告成!
TypeError: Won't implicitly convert Unicode to bytes; use .encode()
TypeError:不会隐式地将Unicode转换为字节
对字符串部分,进行.encode()
将
str(v).encode()
nS = int(txn.get('num-samples'))
改为
nS = int(txn.get('num-samples'.encode()))
哈哈,大功告成!