Skip to content

Instantly share code, notes, and snippets.

@adaptives
Created August 4, 2011 09:57
Show Gist options
  • Select an option

  • Save adaptives/1124876 to your computer and use it in GitHub Desktop.

Select an option

Save adaptives/1124876 to your computer and use it in GitHub Desktop.
Exercise 5 (as is)
my_name = 'Zed A. Shaw'
my_age = 35 # not a lie
my_height = 74 # inches
my_weight = 180 # lbs
my_eyes = 'Blue'
my_teeth = 'White'
my_hair = 'Brown'
print "Let's talk about %s." % my_name
print "He's %d inches tall." % my_height
print "He's %d pounds heavy." % my_weight
print "Actually that's not too heavy."
print "He's got %s eyes and %s hair."
print "His teeth are usually %s depending on the coffee." % my_teeth
# this line is tricky, try to get it exactly right
print "If I add %d, %d, and %d I get %d." % (my_age, my_height, my_weight, my_age + my_height + my_weight)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment