Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想运行一个带有少量参数的python文件,这些参数需要从脚本文件中解析和执行。例如c:\file.py -t version -m user -p pwd -i id.
c:\file.py -t version -m user -p pwd -i id.
我将如何解析这些并将值分配给变量。
你能建议我一个例子来调查吗
使用优秀的argparse库。它是标准的并且运行良好。
大多数人会推荐getopt,因为它非常稳定且非常成熟。
getopt
Python getopt 文档
您可以使用模块argparse来执行此操作。