If i consider the following floating point number: 135.12345678910 and if i want to concatenate that value to a string, but only till 135.123456789. With print, I can easily do this by doing something like:
print "%.9f" % numvar
with numvar being my original number. Is there an easy way to do this?