Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 12th, 2012  |  syntax: None  |  size: 0.21 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. age = raw_input("How old are you? ")
  2. height = raw_input("How tall are you? ")
  3. weight = raw_input("How much do you weight? ")
  4.  
  5. print "So, you're %r years old, %r tall, and %r heavy." % (
  6.     age, height, weight)