Q. Which built-in Python function converts a string to an integer?
β
Correct Answer: (B)
int()
Explanation: `int()` converts a string or other types to integer if possible.