pushing using magit yay
This commit is contained in:
parent
d2e57f15f2
commit
b4071ec660
14 changed files with 355 additions and 0 deletions
39
sami/learn-python-the-hard-way/ex21.py
Normal file
39
sami/learn-python-the-hard-way/ex21.py
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
def add(a, b):
|
||||
print(f"ADDING {a} + {b}")
|
||||
return a + b
|
||||
|
||||
|
||||
def subtract(a, b):
|
||||
print(f"SUBTRACTING {a} - {b}")
|
||||
return a - b
|
||||
|
||||
|
||||
def multiply(a, b):
|
||||
print(f"MULTIPLYING {a} * {b}")
|
||||
return a * b
|
||||
|
||||
|
||||
def divide(a, b):
|
||||
print(f"DIVIDING {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(f"Age: {age}, Height: {height}, Weight: {weight}, IQ: {iq}")
|
||||
|
||||
|
||||
# A puzzle for the extra credit, type it in anyway.
|
||||
print("Here is a puzzle.")
|
||||
|
||||
|
||||
what = add(age, subtract(height, multiply(weight, divide(iq, 2))))
|
||||
|
||||
|
||||
print("That becomes: ", what, "Can you do it by hand?")
|
||||
Loading…
Add table
Add a link
Reference in a new issue