错误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))
错误4:UnicodeDecodeError: 'gbk' codec can't decode byte 0xab in position 44: illegal multibyte sequence
问题原因:logging.conf配置文件中注释有中文,并且编码格式为utf-8。
解决办法1:
Windows下的解决办法:把日志配置文件:logging.conf改成ANSI编码
Linux下的解决办法:把日志配置文件:logging.conf改成UTF-8编码
解决办法2:logging.conf的注释全部修改为英文(编码格式为utf-8也没关系),这种方式更好些。