gpt4 book ai didi

python - 如何运行当前行并在 VS Code 中前进? ( window )

转载 作者:行者123 更新时间:2023-12-05 06:21:38 25 4
gpt4 key购买 nike

假设我有几行要逐行运行。

x=5
y=6
print(x+y)

我将光标设置在 x=5 上并按 Shift + Enter,根据设置这样做:Python: Run current cell and advance

但是,当我按下 shift + enter 时,它会运行当前行,但不会前进,只是停留在那里。

知道如何解决这个问题吗?

最佳答案

为了像在 Jupyter Notebook 中那样“运行单元格并前进”,您需要首先使用 #%% 命令定义单元格。看这里:https://code.visualstudio.com/docs/python/jupyter-support-py

#%%
x = 5

#%%
y = 6

#%%
print(x+y)

您的另一个选择是创建一个带有 .ipynb 扩展名的实际 Jupyter Notebook。然后 VS Code 将自动创建单元格。

关于python - 如何运行当前行并在 VS Code 中前进? ( window ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59707357/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com