commit 08904807e28a05b6cac0c3f5d592f0557bcd18a6 Author: Chen-Zhiwei Date: Tue Aug 11 11:48:04 2020 +0800 tijiao hellopython diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..b80908c --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,15 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + { + "name": "Python: 当前文件", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal" + } + ] +} \ No newline at end of file diff --git a/hello.py b/hello.py new file mode 100644 index 0000000..38be075 --- /dev/null +++ b/hello.py @@ -0,0 +1 @@ +print('hello czw') \ No newline at end of file