📜  python打印脚本的帮助 - Python代码示例

📅  最后修改于: 2022-03-11 14:45:56.200000             🧑  作者: Mango

代码示例1
# credit to the Stack Overflow user in the source link
import argparse

parser=argparse.ArgumentParser(
    description='''My Description. And what a lovely description it is. ''',
    epilog="""All is well that ends well.""")
parser.add_argument('--foo', type=int, default=42, help='FOO!')
parser.add_argument('bar', nargs='*', default=[1, 2, 3], help='BAR!')
args=parser.parse_args()