我有一个具有以下主要功能的 python 文件:
if __name__ == '__main__':
args = docopt(__doc__)
print('source: %s' % args['--src'])
print('target: %s' % args['--tgt'])
现在当我调用这个函数时:
python test.py --src file1 --tgt file2
我得到:
Usage:
test.py --src=<file> --tgt=<file>
Options:
-h --help Show this screen.
--src=<file> src
--tgt=<file> tgt
但是主要功能逻辑并没有被调用。如何解决这个问题?
我试过:
python test.py --src=file1 --tgt=file2
但我得到了相同的结果。
慕无忌1623718
相关分类