質問編集履歴
1
debug構成を追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -16,6 +16,22 @@
|
|
16
16
|
* Python ver3.8.5
|
17
17
|
* VSCODE ver1.66.0
|
18
18
|
|
19
|
+
```json
|
20
|
+
{
|
21
|
+
"version": "0.2.0",
|
22
|
+
"configurations": [
|
23
|
+
{
|
24
|
+
"name": "Python: Current File",
|
25
|
+
"type": "python",
|
26
|
+
"request": "launch",
|
27
|
+
"program": "${file}",
|
28
|
+
"console": "integratedTerminal",
|
29
|
+
"justMyCode": true
|
30
|
+
}
|
31
|
+
]
|
32
|
+
}
|
33
|
+
```
|
34
|
+
|
19
35
|
|
20
36
|
備考:
|
21
37
|
Pythonの拡張機能の前のバージョンを戻したり、VSCODEの再インストールも行いましたが上手く行きませんでした。
|