我很黑! 发表于 2018-8-10 08:09:26

笨方法学习Python(11-20)

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)
  

  
$ python ex14.py Zed
  
Hi Zed, I'm the ex14.py script.
  
I'd like to ask you a few questions.
  
Do you like me Zed?
  
> yes Where do you live Zed?
  
> America What kind of computer do you have?
  
> Tandy
  
Alright, so you said 'yes' about liking me.
  
You live in 'America'. Not sure where that is.
  
And you have a 'Tandy' computer. Nice.
页: [1]
查看完整版本: 笨方法学习Python(11-20)