Python反转每对括号间的子串

B站影视 港台电影 2025-03-29 11:27 1

摘要:def reverseParentheses(s: str) -> str:stack = current = ""for char in s:if char == '(':stack.append(current)current = ""elif char

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)

来源:明辉教育

相关推荐