# Import a library and perform a calculation
import numpy as np
# Create an array and calculate the mean
data = np.array([1, 2, 3, 4, 5])
data_mean = np.mean(data)
# Print the result
print(f"The mean of the data is: {data_mean}")The mean of the data is: 3.0