Use Python's re module to check if parentheses in a string are balanced.
Constraints
Example
```python
>>> is_balanced("((a+b)*c)")
True
>>> is_balanced(")(")
False
>>> is_balanced("(a")
False
>>> is_balanced("abc")
True
```
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints