Generate parenthesis

def genPara(op,clo,no,l=[]):
if clo==no:
print(" ".join(l))

else:
	
	if clo<op:
		l.append(")")
		genPara(op,clo+1,no,l)
		l.pop()
	if op<no:
		l.append("(")
		genPara(op+1,clo,no,l)
		l.pop()
return

no=int(input())

genPara(0,0,no)

the code is not passing any test cases

link to code on ide

@yashikakhurana00
Made some changes. Try submitting this code.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.