Ctrl + P 를 눌러 launch.json 파일을 찾는다
Python 구성에 "cwd": "${fileDirname}" 을 추가해준다
{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Current File (Integrated Terminal)",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"cwd": "${fileDirname}" // "Current File"
},
]
}
파일 위치 변경시 아래 코드를 추가하여 해결할수도있다
import sys
import os.path as op
with open(op.join(sys.path[0], 'file.txt'), 'w') as f:
f.write('HelloWorld')
'python' 카테고리의 다른 글
[파이썬] Python selenium 셀레니움 사용법 [웹 크롤링] (0) | 2021.10.06 |
---|---|
[파이썬] selenium 셀레니움 설치하기 / 크롬 드라이버 설치하기 (0) | 2021.10.06 |