{TypeError}can't multiply sequence by non-int of type 'numpy.float64'
float64 和tuple相乘,引发的错误
a=(2,4,6)
b=35.6
c=a*b
原因是a是int类型,b是float类型,类型不一致,不能乘法操作
解决方法,数据类型改为一致即可。
a=(2,4,6)
b=35
c=a*b
print(c)
{TypeError}can't multiply sequence by non-int of type 'numpy.float64'
float64 和tuple相乘,引发的错误
a=(2,4,6)
b=35.6
c=a*b
原因是a是int类型,b是float类型,类型不一致,不能乘法操作
解决方法,数据类型改为一致即可。
a=(2,4,6)
b=35
c=a*b
print(c)