1. 程式人生 > >python中的getopt怎麼理解

python中的getopt怎麼理解

在看crfascnn程式碼的demo時看到這個語句,上網查了一下,可以參考這個博文:

demo中相關的程式碼以及我的解釋如下:

    try:
        opts, args = getopt.getopt(argv, 'hi:o:g:', ["ifile=", "ofile=", "gpu="]) # argy為執行程式時自己新增的引數,如執行程式:python crfasrnn_demo.py -i my_pic.jpg -o my_out.png -g -1 即可指定自己的圖片為my_pic.jpg,輸出my_out.png
    except getopt.GetoptError:
        print("crfasrnn_demo.py -i <input_file> -o <output_file> -g <gpu_device>")
        sys.exit(2)

    for opt, arg in opts:
        if opt == '-h':
            print("crfasrnn_demo.py -i <inputfile> -o <outputfile> -g <gpu_device>")
            sys.exit()
        elif opt in ("-i", "ifile"): #若指定了ifile的引數,更新input_file
            input_file = arg
        elif opt in ("-o", "ofile"): #若指定了ofile的引數,更新output_file
            output_file = arg
        elif opt in ("-g", "gpudevice"):
            gpu_device = int(arg)