The Python max() function is used to identify the largest value in an array.
Average_pulse_max = max(80, 85, 90, 95, 100, 105, 110, 115, 120, 125) print (Average_pulse_max) |
The Python min()
function is used to determine the smallest value in an array.
Average_pulse_min = min(80, 85, 90, 95, 100, 105, 110, 115, 120, 125) print (Average_pulse_min) |
The NumPy mean()
function is used to calculate the average value of an array.
import numpy as np Calorie_burnage = [240, 250, 260, 270, 280, 290, 300, 310, 320, 330] Average_calorie_burnage = np.mean(Calorie_burnage) print(Average_calorie_burnage) |
Note: We use np. before mean to indicate that we want to call the mean function from the NumPy library. |