📜  rom pathlib import Path # 在项目内部构建路径,如下所示:BASE_DIR 'subdir'. BASE_DIR = Path(__file__).resolve().parent.parent - Python 代码示例

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

代码示例1
from pathlib import Path

# Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve(strict=True).parent.parent