VS Code和Python的首次使用

时间:2018-12-24 16:09:57

标签: python-3.x visual-studio-code

VS代码中Python的首次使用。无法识别我的导入,即随机吗?

我已经在Anaconda Jupyter中运行我的代码,所以我知道我的代码有效。这是一个配置问题。

import random
num = random.randint(1,2)

我希望没有运行时错误。

但是我在控制台中收到以下响应:

num = random.randint(1,2)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'random' is not defined

1 个答案:

答案 0 :(得分:0)

我认为您尚未配置python解释器。您可以通过打开命令面板(Ctrl + Shift + P)选择Python解释器,开始输入Python:选择解释器命令进行搜索,然后选择要用于当前文件的python解释器。

如果仍然无法使用,则可以参考此VS代码document以获得更多详细信息。