age = raw_input("How old are you? ") height = raw_input("How tall are you? ") weight = raw_input("How much do you weigh? ") print "So, you‘re %r old, %r tall and %r heavy." % ( age, height, weight)
Exercise 12: Prompting People
原文:http://www.cnblogs.com/hluo/p/4045377.html