我正在使用python 3,需要使用numpy库,但是执行代码时,在我导入库的那一行上出现错误。
错误是:ModuleNotFoundError: No module named 'numpy'
我已经检查并且库已正确安装
import numpy as np
input = np.array([1,7,5])
weight = np.array([0.8, 0.1, 0])
def sum(inp, weig):
return inp.dot(weig)
sum = sum(input, weight)
def stepFunction(sum):
if (sum >= 1):
return 1
return 0
result = stepFunction(sum)