python腳本如何指定文件
1、說明
(1)dest=files,是說將命令行中,--file的參數值賦值給變量files,你可以用args.files訪問。
(2)action=append,由于我們會有指定多個文件的需求,那就指定多次--file,argparse會將其放在一個list里。
(3)type=argparse.FileType('rb'),既然是指定文件,那么參數應該為路徑,并指定打開模式為rb,如果如果要取得文件內容,可以用args.files[0].read()
2、實例
importargparse
parser=argparse.ArgumentParser()
parser.add_argument('--file','-f',action='append',
dest='files',
help=('additionalyamlconfigurationfilestouse'),
type=argparse.FileType('rb'))
args=parser.parse_args()
以上就是Python腳本指定文件的方法,希望對大家有所幫助。更多Python學習教程請關注IT培訓機構:千鋒教育。