首页 > 代码库 > Exercise 14: Prompting And Passing
Exercise 14: Prompting And Passing
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)
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。