Skip to content

Instantly share code, notes, and snippets.

@adaptives
Created August 4, 2011 10:22
Show Gist options
  • Select an option

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

Select an option

Save adaptives/1124915 to your computer and use it in GitHub Desktop.
Exercise 5 (with Kilogram and Centimeter conversions)
kg_to_pound = 2.20462262185
inch_to_cm = 2.54
name = 'Zed A. Shaw'
age = 35 # not a lie
height = 74 # inches
height_in_cm = height * inch_to_cm
weight = 180 # lbs
weight_in_kg = weight/kg_to_pound
eyes = 'Blue'
teeth = 'White'
hair = 'Brown'
print "Let's talk about %s." % name
print "He's %d inches tall." % height
print "He's %d cm tall." % height_in_cm
print "He's %d Pounds heavy." % weight
print "He's %d Kilograms heavy." % weight_in_kg
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." % teeth
# this line is tricky, try to get it exactly right
print "If I add %d, %d, and %d I get %d." % (age, height, weight, age + height + weight)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment