In this tutorial, we will see how to convert float to String.
You can simply use str method to convert float to String.
Let’s understand with the help of simple example.
1 2 3 4 |
f=1.23444432 print("Converted f to String:",str(f)) |
Output:
Let’s say you want to format String to only two decimal places.
You can use below code to do it.
1 2 3 4 5 6 |
f=1.23444432 #Use 5 characters, give 2 decimal places s = "%5.2f" % f print("Converted f to String:",s) |
Output:
That’s all about converting float to String in python.