def reverseParentheses(s: str) -> str:stack = current = ""for char in s:if char == '(':stack.append(current)current = ""elif char == ')':current = stack.pop + current[::-1]else:current += charreturn current# 提示用户输入s = input("请输入一个包含括号和小写字母的字符串(例如 '(abcd)' 或 '(u(love)i)'):")result = reverseParentheses(s)print("处理后的结果是:", result)摘要:def reverseParentheses(s: str) -> str:stack = current = ""for char in s:if char == '(':stack.append(current)current = ""elif char
来源:明辉教育