这是 Python。我正在尝试编写一个程序,该程序在不使用全局变量的情况下向用户询问字符串输入。如果字符串只有并排的括号,那么它是偶数。如果它有字母、数字或括号被隔开,那么它是不均匀的。例如,() 和 ()() 和 (()()) 是偶数,而 (() 和 (pie) 和 () 不是。下面是我到目前为止写的内容。我的程序继续打印 '无限输入你的字符串,我现在被这个问题困住了。
selection = 0
def recursion():
#The line below keeps on repeating infinitely.
myString = str(input("Enter your string: "))
if not myString.replace('()', ''):
print("The string is even.")
else:
print("The string is not even.")
while selection != 3:
selection = int(input("Select an option: "))
#Ignore this.
if selection == 1:
print("Hi")
#This won't work.
elif selection == 2:
def recursion():
recursion()