标签: python argparse
我在python文件“hello.py”中使用argparse
argparse
我正在使用
python hello.py -infile "ex1.txt" -op1 "2" ....
如何获取“hello.py”文件所在的目录?我知道os.path.dirname()可以用于infile,但是如何知道同样的事情“hello.py”?
os.path.dirname()
infile
答案 0 :(得分:0)
尝试__file__获取完整文件名: - )
__file__