The question is as follows:
def p():
return lambda: print("Confused?")
if not p:
p()
elif p:
p()()
else:
print(not p()())
I dont understand how to get Confused? as the answer
The question is as follows:
def p():
return lambda: print("Confused?")
if not p:
p()
elif p:
p()()
else:
print(not p()())
I dont understand how to get Confused? as the answer