在Numpy,我尝试了以下内容.我怀疑这不是一个错误.如果它是一个功能,我不明白.有人可以解释一下吗?谢谢.
>>> np.array([173], dtype = np.uint8) * [360] array([62280]) >>> np.array([173], dtype = np.uint8) * 360 array([-3256], dtype=int16) >>>
python numpy
numpy ×1
python ×1