这篇文章将为大家详细讲解有关python选项参数的示例分析,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
让客户满意是我们工作的目标,不断超越客户的期望值来自于我们对这个行业的热爱。我们立志把好的技术通过有效、简单的方式提供给客户,将通过不懈努力成为客户在信息化领域值得信任、有价值的长期合作伙伴,公司提供的服务项目有:域名注册、网络空间、营销软件、网站建设、内乡网站维护、网站推广。#!c:python26python.exe
import optparse
def main():
MSG_USAGE = "opt.py [-s
p = optparse.OptionParser(MSG_USAGE)
p.add_option('-s','--server',default="127.0.0.1",help="Server ip your self with this option.")
p.add_option('-p','--port',default="6666",type="int",help="Server port your self with this option.")
p.add_option('-c','--client',default="localhost",help="Client ip your self with this option.")
options, arguments = p.parse_args()
print 'Server: %snPort: %snClient: %s' % (options.server,options.port,options.client)
if __name__ == '__main__':
main()
[@more@]
关于“python选项参数的示例分析”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。