SciPy - Statistical Tests
What will this code print?
from scipy.stats import ttest_rel
import numpy as np
before = np.array([20, 22, 19, 24, 25])
after = np.array([21, 23, 20, 26, 27])
result = ttest_rel(before, after)
print(round(result.pvalue, 3))