Use str() to convert float to a string in Python. It’s a built-in function.
Example how to convert float to String in Python
Simple example code converts a floating object to a string in Python. Let’s convert the float
1.99
to a string returns "1.99"
.
After converting check the type and print it into the console.
f = 1.99
res = str(f)
print(res)
print(type(res))
Output:

Do comment if you have any doubts or suggestions on this Python float string topic.
Note: IDE: PyCharm 2021.3.3 (Community Edition)
Windows 10
Python 3.10.1
All Python Examples are in Python 3, so Maybe its different from python 2 or upgraded versions.

Degree in Computer Science and Engineer: App Developer and has multiple Programming languages experience. Enthusiasm for technology & like learning technical.