【Python】Learn Python the hard way, ex14 argv参数传值

来源:互联网 发布:勤思考研网络课程 编辑:程序博客网 时间:2024/05/21 09:46
from sys import argvscript, user_name = argvprompt = '>'print "Hi %s, I'm the %s script." % (user_name, script)print "I'd like to ask you a few questions."print "Do you like me %s?" % user_namelikes = raw_input (prompt)print "Where do you live %s?" % user_namelives = raw_input(prompt)print "What kind of computer do you have?"computer = raw_input (prompt)print """Alright, so you said %r about liking me.You live in %r. Not sure where that is.And you have a %r computer.  Nice.""" % (likes, lives, computer)"""Test Result:Hi ghx, I'm the /Users/myRMBP/Desktop/ex14.py script.I'd like to ask you a few questions.Do you like me ghx?>yesWhere do you live ghx?>szWhat kind of computer do you have?>macAlright, so you said 'yes' about liking me.You live in 'sz'. Not sure where that is.And you have a 'mac' computer.  Nice."""


心得:


通过argv传值应该可以用于混合编程,值得关注


0 0