Created
September 23, 2011 09:41
-
-
Save adaptives/1237043 to your computer and use it in GitHub Desktop.
LPYHW 2.0 - Exercise 21
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def add(a, b): | |
| print "ADDING %d + %d" % (a,b) | |
| return a + b | |
| def subtract(a, b): | |
| print "SUBTRACTING %d - %d" % (a, b) | |
| return a - b | |
| def multiply(a, b): | |
| print "MULTIPLYING %d * %d" % (a, b) | |
| return a * b | |
| def divide(a, b): | |
| print "DIVIDING %d / %d" % (a, b) | |
| return a / b | |
| print "Let's do some math with just functions!" | |
| age = add(30, 5) | |
| height = subtract(78,4) | |
| weight = multiply(90, 2) | |
| iq = divide(100, 2) | |
| print "Age: %d, Height: %d, Weight: %d, IQ: %d" % (age, height, weight, iq) | |
| # A puzzle for extra credit, type it in anyway. | |
| print "Here's a puzzle." | |
| what = add(age, subtract(height, multiply(weight, divide(iq, 2)))) | |
| print "That becomes: ", what, "Can you do it by hand?" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment