练习11 提问和输入
2017-09-16 本文已影响0人
黑色茄子
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)