📌  相关文章
📜  在 Visual Studio 代码中安装 Python 包 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:35.894000             🧑  作者: 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()