📜  为 python 代码示例设置 VS Code

📅  最后修改于: 2022-03-11 14:45:11.559000             🧑  作者: Mango

代码示例2
"python.linting.pylintArgs": [
    "--init-hook",
    "import sys; sys.path.append('/path/to/Functions')"
]
  
# OR 

sys.path.append("/path/to/parent")

# option 1
from Functions import functions
functions.copy()
functions.delete()

# option2
from Functions.functions import copy, delete
copy()
delete()