首页 > 编程语言 >【笨方法学python】ex14 - 提示和传递

【笨方法学python】ex14 - 提示和传递

时间:2022-10-05 04:33:05浏览次数:52  
标签:prompt name python ex14 raw computer user print 方法学

代码如下:

点击查看代码
# -*-coding:utf-8- -*-
# 提示和传递

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)

执行结果:
image

标签:prompt,name,python,ex14,raw,computer,user,print,方法学
From: https://www.cnblogs.com/TiramisuPS/p/16754976.html

相关文章