i got probability extremely weak and i need divide 1 proba per 1 other probability.
Imagine it :
a=5e-150000
b=a=5e-150000
print(a/b)
the results must be 1 but python say me :
print(a/b)
ZeroDivisionError: float division by zero
Do you have a solution to don't got this message error ?
Thanks for reading me !