TypeError: unsupported operand type(s) for &: ‘list‘ and ‘list‘

我的报错

	Traceback (most recent call last):
  File "poc.py", line 34, in <module>
    if(result_lens[0] == result_lens[2] & result_lens[0] != result_lens[1]):
TypeError: unsupported operand type(s) for &: 'list' and 'list'

解决:输出result_lens的内容
在这里插入图片描述
出错的原因:result_lens列表的内容不是数字–》排查修改代码

猜你喜欢

转载自blog.csdn.net/luminous_you/article/details/109900866