#!/usr/bin/python # exact position of python
#!/usr/bin/env python # position of python in enviornment variables
# -*- coding:utf-8 -*- # coding
age = raw_input("How old are you? ")
height = raw_input("How tall are you? ")
weight = raw_input("How much do you weight? ")
print "So, you're %r old, %r tall and %r heavy." % (
age, height, weight)
Python Exercise #12
最新推荐文章于 2015-08-18 11:45:46 发布