python 命令行输入字符串_如何将字符串语句作为命令行参数传递

argv将是shell解析的所有参数的列表。

所以如果我#script.py

from sys import argv

print argv

$python script.py hello, how are you

['script.py','hello','how','are','you]

脚本的名称始终是列表中的第一个元素。如果我们不使用引号,每个单词也将成为列表中的一个元素。print argv[1]

print argv[2]

$python script.py hello how are you

hello

how

但如果我们用引号$python script.py "hello, how are you"

['script.py','hello, how are you']

所有单词现在都是列表中的一项。所以就这样做print "The script is called:", argv[0] #slicing our list for the first item

print "Your first variable is:", argv[1]

或者如果出于某种原因不想使用引号:print "The script is called:", argv[0] #slicing our list for the first item

print "Your first variable is:", " ".join(argv[1:]) #slicing the remaining part of our list and joining it as a string.

$python script.py hello, how are you

$The script is called: script.py

$Your first variable is: hello, how are you

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值