I am running a binomial test in python, since the P-value result is too close to 0 so it return 0 directly, but I want to return the exact P value instead of 0, how could I do that?
The code is below
from scipy import stats
p=stats.binom_test(4953,850421,0.002691, alternative='greater')