You can download this code by clicking the button below.
This code is now available for download.
Calculate the arithmetic mean of three numbers, which is the sum of the three numbers divided by the number of numbers.
Technology Stack : Built-in Python libraries
Code Type : Mathematical calculation
Code Difficulty :
def aaaa(a, b, c):
"""
计算三个数字的算术平均值。
"""
return (a + b + c) / 3