which line of code converts 2.56 into a string data type?\nstr(2.56)\nmakestring(2.56)\ntostring(2.56)\nstrin…

which line of code converts 2.56 into a string data type?\nstr(2.56)\nmakestring(2.56)\ntostring(2.56)\nstring(2.56)
Answer
Brief Explanations:
In many programming languages like Python, the str() function is used to convert a value into a string data - type. The other options like makestring(), tostring(), string() are not standard built - in functions for this purpose in common programming languages.
Answer:
A. str(2.56)