习题21,几个简单的加减乘除函数,注意return的用法。
Posted l-y-l
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了习题21,几个简单的加减乘除函数,注意return的用法。相关的知识,希望对你有一定的参考价值。
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"MULTIPLY {a}*{b}")
return a*b
def divide(a,b):
print(f"DIVIDE {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}")
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?")
以上是关于习题21,几个简单的加减乘除函数,注意return的用法。的主要内容,如果未能解决你的问题,请参考以下文章
python练习题:利用切片操作,实现一个trim()函数,去除字符串首尾的空格,注意不要调用str的strip()方法