错误1:TypeError: object of type 'NoneType' has no len()
原因:这个错误是因为我们试图迭代那个不可迭代的对象。
原来方法:for i in rlen(data_list)
解决办法:
for i in range(len(data_list)):
在循环中使用 range() 函数解决了错误,因为range() 函数返回一个容器或事物列表,可以在其中一个一个地迭代值,并且可以相应地处理它。
错误2:can only concatenate str (not "int") to str
原因:拼接字符串时,有类型为int的变量
解决办法:使用 str()函数 将int转为str即可。
错误3:Exception: can only concatenate str (not "list") to str
原因:拼接字符串时,有类型为list的变量
解决办法:使用 str()函数 将list转为str即可。
print(">>查询到加密策略。strategy_list: "+strategy_list) 改成:print(">>查询到加密策略。strategy_list: "+str(strategy_list))