Hello!
I am trying to convert a scientific notation number eg: -4.76830444738e-12 to a float representation. and somehow I have not been able to do this in GHpython. any suggestions would be helpful!
thank you
Hello!
I am trying to convert a scientific notation number eg: -4.76830444738e-12 to a float representation. and somehow I have not been able to do this in GHpython. any suggestions would be helpful!
thank you
d = -4.76830444738e-12
print(d)
print(format(d, 'f'))
print(format(d, '.15f'))
ā Dale
many thanks Dale!