python 封装--当前工作目录的绝对路径的函数
2018-09-27 本文已影响0人
Demon_半夏
import os
def get_cwd():
path = os.path.dirname(os.path.abspath(__file__))
#当前文件的绝对路径
return path
import os
def get_cwd():
path = os.path.dirname(os.path.abspath(__file__))
#当前文件的绝对路径
return path