Python和VS代码问题

时间:2019-06-16 11:26:59

标签: python python-3.x

VS Code终端不会输出我的Python代码。

我不断得到这个:

PS C:\Users\danie\OneDrive\Documents\Exercise Files\Ch2> cd 'c:\Users\danie\OneDrive\Documents\Exercise Files\Ch2'; ${env:PYTHONIOENCODING}='UTF-8'; ${env:PYTHONUNBUFFERED}='1'; & 'C:/Python/Python37/Python.exe' 'c:\Users\danie\.vscode\extensions\ms-python.python-2019.5.18875\pythonFiles\ptvsd_launcher.py' '--default' '--client' '--host' 'localhost' '--port' '57829' 'c:\Users\danie\OneDrive\Documents\Exercise Files\Ch2\helloworld_start.py'

我已经按如下所示设置了launch.JSON文件

"version": "0.2.0",
"configurations": [
    {
        "name": "Python",
        "type": "python",
        "request": "launch",
        "stopOnEntry": true,
        "pythonPath": "${config:python.pythonPath}",
        "program": "${file}",
        "cwd": "",
        "env": {},
        "envFile": "${workspaceRoot}/.env",     
    }
]

这是我的代码:

def main():
    print("hello world")

    if __name__ == "__main__":
        main()

我只想打印“ hello world”的照片,但看来我在设置中缺少某些内容。

1 个答案:

答案 0 :(得分:0)

最后两行(您在其中调用main函数)缩进了。这意味着它们是主要功能的一部分。

通过删除缩进,将在运行文件并按预期调用主函数时执行这两行。看到这个

def main():
    print("hello world")

if __name__ == "__main__":
    main()