numpy数组的运算

可以用一个数组除以一个值:

l=7
p=np.ones(l)
p/float(5)

运行结果:

array([0.2, 0.2, 0.2, 0.2, 0.2, 0.2, 0.2])

但如果是list就不可以,如下所示:

c=[0,1,0,1,0,1]
c/float(5)

运行结果:

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
 in 
      1 c=[0,1,0,1,0,1]
----> 2 c/float(5)

TypeError: unsupported operand type(s) for /: 'list' and 'float'


你可能感兴趣的:(#,python数据分析)