For a normal distribution with mean 0 and standard deviation 1, which of the following Python lines outputs the probability that z is less than 0.325?
a) `scipy.stats.norm.cdf(0.325)`
b) `scipy.stats.norm.pdf(0.325)`
c) `scipy.stats.norm.sf(0.325)`
d) `scipy.stats.norm.ppf(0.325)`