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

python_3

时间:2014-12-16 13:23:29      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   ar   color   使用   sp   strong   on   

1 from sys import argv
2 one,two,three = argv
3 print one is:,one
4 print two is:,two
5 print three is:,three

bubuko.com,布布扣

 

参数,解包,变量

from sys import argv

注意:

1.argv 和 raw_input() 有什么不同?
不同点在于用户输入的时机。如果参数是在用户执行命令时就要输入,那就是 argv,如果是在
脚本运行过程中需要用户输入,那就使用 raw_input() 。

 

1 from sys import argv
2 one,two,three = argv
3 print one is:,one
4 print two is:,two
5 print three is:,three
6 four = raw_input(four:)
7 print four is : %s %four

 

bubuko.com,布布扣

2.命令行参数是字符串吗?
是的,就算你在命令行输入数字,你也需要用 int() 把它先转成数字,和在 raw_input()
里一样。

 

 

 

python_3

标签:style   blog   http   ar   color   使用   sp   strong   on   

原文地址:http://www.cnblogs.com/wufeng0927/p/4166737.html

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