parser.add_argument 中的 store_true 如何使用

示例代码:

    parser.add_argument('-e', '--evaluate', dest='evaluate',
                        action='store_true',
                        help='evaluate model on validation set')

若文件名为 a.py

直接运行python a.py,输出结果False

运行python a.py -e,输出结果True

也就是说,action=‘store_true’,只要运行时该变量有传参就将该变量设为True。

参考:
[1] https://blog.csdn.net/zkq_1986/article/details/85287896

你可能感兴趣的:(Python)