xxxxxxxxxx
float_value = 3.14
string_value = "The value of pi is: "
# Convert the float value to a string using the str() function
result = string_value + str(float_value)
print(result)
xxxxxxxxxx
float_value = 3.14
string_value = "The value is: " + str(float_value)
print(string_value)