I am trying to show decimal values instead of exponential values as it is required for end user. You can see the code below,
currentValue1='1.56e-65'
print("%f" % float(currentValue1))
print(float(currentValue1))
output is:
0.000000
1.56e-65
I want to know, is there any way to show float value with all decimal values dynamically without formatting? something like following
print("%.65f"%currentValue)