By doing this:
j = pow(p1, k1)
I get this:
j: 2.128e-100
How can I display it without the scientific notation? Something like this:
j: 2.128
By doing this:
j = pow(p1, k1)
I get this:
j: 2.128e-100
How can I display it without the scientific notation? Something like this:
j: 2.128
You can use string formatting:
>>> print('{:.103f}'.format(2.128e-100))
0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002128