习题14.md

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 question.")
print("Do you like me %s?"%user_name)
likes = input(prompt)

print("Where do you live %s?"%user_name)
lives = input(prompt)

print("What kind of computer do you have?")
computer = input(prompt)
print("Alright,so you said %s about liking me. You live in %s.And you have a %s computer."%(likes,lives,computer))

在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/DMU_lzq1996/article/details/82776758