Python Useful Packagespathlib取路径from pathlib import Path
# 当前工作目录
Path.cwd()
# 当前文件路径
Path(__file__)
# 任意字符串路径
Path('
2022-03-21