TypeError: ‘<=‘ not supported between instances of ‘list‘ and ‘int‘

文章目录

  • 项目场景
  • 问题描述
  • 原因分析
  • 解决方案

项目场景

[1, 2, 3] <= 1

问题描述

Traceback (most recent call last):
  File "", line 1, in <module>
TypeError: '<=' not supported between instances of 'list' and 'int'

原因分析

list不支持这种比较大小的操作


解决方案

import numpy as np
a = np.array([1, 2, 3])
b = a <= 1

结果如下:
请添加图片描述

你可能感兴趣的:(python,#,numpy,#,Debug,python)