python 解析python脚本参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 解析python脚本参数相关的知识,希望对你有一定的参考价值。

import argparse

# Functions here

if __name__ == "__main__":
    parser = argparse.ArgumentParser(description='Create Marketing Report')
    parser.add_argument('--accounts',
                        action='store_true',
                        help='Process Account Data')
    parser.add_argument('--sales',
                        action='store_true',
                        help='Process Sales Data')
    args = parser.parse_args()
    # Process accounts
    if args.accounts:
        # Do something
    # Process sales
    if args.sales:
        # Do Something

以上是关于python 解析python脚本参数的主要内容,如果未能解决你的问题,请参考以下文章

从 Jupyter Notebook 运行带有可变解析器参数的 python 脚本

Python语言命令行参数解析接收参数执行脚本的三种方法

Python笔记:命令行参数解析

Python 命令行参数解析: optparse 模块

Python 中命令行参数解析工具 docopt 安装和应用

在命令行参数中解析 \ - python 2.7.3