Implement a function that checks for balanced parentheses.
Given a string containing only ( and ), return True if every opening parenthesis is closed in the correct order, and False otherwise. An empty string is considered balanced.
Function: def is_balanced_parentheses(s):
Return a boolean value.
( and ) charactersdef is_balanced_parentheses(s):