练习11 提问和输入

print "How old are you?",
age = raw_input()
print "How tall are you?",
height = raw_input()
print "How much do you weight?",
weight = raw_input()

print "So,you're %r old, %r tall and %r heavy." %(age,height,weight)

你可能感兴趣的:(练习11 提问和输入)