#!/usr/bin/python      # exact position of python
#!/usr/bin/env python  # position of python in enviornment variables
# -*- coding:utf-8 -*- # coding
# Purpose: Prompting And Passing

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)

Logo

CSDN联合极客时间,共同打造面向开发者的精品内容学习社区,助力成长!

更多推荐