在Python中,可以使用argparse库来从命令行读取参数。下面是一个简单的示例: import argparse # 创建ArgumentParser对象 parser = argparse.ArgumentParser(description='从命令行读取参数示例') # 添加参数 parser.add_argument('-n', '--name', type=str, help='你的名字', required=True) parser.add_argument('...
运行时可在命令行输入 python3 getopt_test.py -f max -l liu 或 python3 getopt_test.py --first_name=max --last_name=liu 输出结果: =END=== =reference= [1]https://www.geeksforgeeks.org/getopt-module-in-python/