码迷,mamicode.com
首页 > 其他好文 > 详细

习题21,几个简单的加减乘除函数,注意return的用法。

时间:2020-04-01 16:33:33      阅读:85      评论:0      收藏:0      [点我收藏+]

标签:multi   int   with   math   com   cti   bec   ons   sub   

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,"\n","Can you do it by hand?")

习题21,几个简单的加减乘除函数,注意return的用法。

标签:multi   int   with   math   com   cti   bec   ons   sub   

原文地址:https://www.cnblogs.com/l-y-l/p/12613213.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!