Numpy和Pandas在我的Python中不工作

r6vfmomb  于 2023-06-06  发布在  Python
关注(0)|答案(2)|浏览(177)

Pandas和Numpy导入问题

每当我尝试导入pandas或numpy时,终端中什么都不显示。
例如

import numpy as np
inputs = [1, 2, 3, 2.5]

weights = [[0.2, 0.8, -0.5, 1.0],
           [0.5, -0.91, 0.26, -0.5],
           [-0.26, -0.27, 0.17, 0.87]]

biases = [2, 3, 0.5]

output = np.dot(weights, inputs)
print(output)

上面的代码应该已经打印了输出,但在终端x1c 0d1x中没有打印任何内容
我已经尝试重新安装python,pandas和numpy,但似乎没有任何工作。我已经检查了任何冲突的包。numpy和pandas在anaconda中也能很好地工作,但在我的python idle或vscode中却不能工作。这使得Python空闲重新启动。

规格

  1. Python - 3.10.9
    1.中文(简体)
  2. pandas - 2.0.2
1u4esq0p

1u4esq0p1#

在终端中,转到neural network文件夹。然后,执行以下命令:

python nnet.py

否则,尝试使用:

python3 nnet.py
umuewwlo

umuewwlo2#

看起来像是你在VS Code中的设置有问题

相关问题