码迷,mamicode.com
首页 > 其他好文 > 详细

Exercise 14: Prompting And Passing

时间:2014-10-23 13:58:52      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   sp   div   on   log   

from sys import argv
script, user_name = argv
prompt = > 
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_name
likes = raw_input(prompt)
print "Where do you live %s?" % user_name
lives = 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)

Notice though that we make a variable prompt that is set to the prompt we want, and we give that to raw_input
instead of typing it over and over. Now if we want to make the prompt something else, we just change it in this one spot
and rerun the script.

 

Exercise 14: Prompting And Passing

标签:style   blog   color   io   ar   sp   div   on   log   

原文地址:http://www.cnblogs.com/hluo/p/4045436.html

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