码迷,mamicode.com
首页 > 编程语言 > 详细

python的命令行参数处理

时间:2018-07-28 17:20:53      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:desc   命令行参数   orm   choices   import   port   parse   position   nbsp   

 
import argparse
 
# A position argument
func_choice = {client : client function, "server" : "server function"}

# parser
parser = argparse.ArgumentParser(description = "Select your favorite function")
# add argument
parser.add_argument(role, choices = func_choice, help = "select your role")
parser.add_argument("-p", type = int, help = "select your port")

# parse
args = parser.parse_args()
print("You select role {0} and port {1}".format(func_choice[args.role], args.p))

 

python的命令行参数处理

标签:desc   命令行参数   orm   choices   import   port   parse   position   nbsp   

原文地址:https://www.cnblogs.com/byeyear/p/9382528.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!