Q. Which of the following functions returns the smallest character in the string str?
β
Correct Answer: (D)
min(str)
Explanation: min() is a built-in function in Python that returns the smallest character in a string.