from scipy.stats import shapiro
# Replace sample_age with your actual sample data
sample_age = [23, 25, 27, 30, 32, 35, 35, 37, 40, 41]
# Perform Shapiro-Wilk test
shapiro_age = shapiro(sample_age)
print(shapiro_age)