I have been using the format:
print 'blah, blah %f' %variable
to put variables into strings. I heard it was more pythonic than the ‘+str()+’ approach, and have got quite used to it.
Is there a way of specifying the decimal places added to the string with %f? I have tried rounding the number before supplying the variable.
Thanks
Here is the Python Doc Link, please consider: