I use this code to test scientific notation:
a = 5.26E-324
print(a)
a = 5.26E-325
print(a)
The code result:
5e-324
0.0
Questions:
- Why
5.26E-325
cannot show5e-325
? - Does this mean that less than
E-324
is shown to be0.0
? - Is there a way to show
5e-325
?