I am currently trying to force python to keep two zeroes after converting a float to a string, i.e.:
150.00 instead of 150.0
I am not very experienced with python and thus can only think of a brute force method to achieve this. Is there a built in functionality to do this?
Thanks