If you are able to use scipy
you can do this:
from scipy import stats
stats.norm.cdf(0)
0.5
but it looks like what you want is actually the upper tail probability which in scipy.stats
is referred to as a survival function of sf
for short.
stats.norm.sf(0, 0.03, 0.055)
0.7072795327155363
should give you what you want.
There are many continuous and discrete distributions within the scipy package. The docs are also available online to read:
https://docs.scipy.org/doc/scipy-0.16.1/reference/stats.html
other distribution functions are supported as are other common calculations on distributions, e.g. random sampling, mean, mass/density function, etc.
If you wanted you could directly calculate via:
>>> 1-stats.norm.cdf(0, 0.03, 0.055)
0.7072795327155363
For arguments near the bulk of the probability mass the two values will usually be the same but for very low probability events it is often the case that different numerical algorithms are used in the "tails" of the probability distributions so it can sometimes be beneficial to use the .sf()
version.