2
我有一個問題,我無法找到答案。這是我的代碼塊:python argparse like --home-path
import argparse
parser = argparse.ArgumentParser()
parser.add_argument('-t', '--test', help='just for testing')
parser.add_argument('--home-path', help='specify the homepath')
args = parser.parser_args()
if args.test:
print('Test')
如何訪問類的測試參數裏的「--home路」的說法?
args = parser.parse_args()
if args.home_path:
# Do stuff
此行爲dest
下記錄在ArgumentParser.add_argument()
: