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:
Converted f to String: 1.23444432
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:
Converted f to String: 1.23
That’s all about converting float to String in python.
Was this post helpful?
Let us know if this post was helpful. Feedbacks are monitored on daily basis. Please do provide feedback as that\'s the only way to improve.