# 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
#
#
# @param s string字符串
# @return bool布尔型
#
class Solution:
def isValid(self , s: str) -> bool:
stack=[]
label = True
if len(s)==0:
return label
for i in s:
if i=="[" or i=="(" or i=="{":
stack.append(i)
if i=="]":
if len(stack)>0 and stack.pop()=="[":
label=True
else:
label=False
break
if i=="}":
if len(stack)>0 and stack.pop()=="{":
label=True
else:
label=False
break
if i==")":
if len(stack)>0 and stack.pop()=="(":
label=True
else:
label=False
break
if len(stack)==0:
return label
else:
return False
# write code here