+ 2
please tell that how can i resolve this Syntax error
if not True: print("1") elif not (1+1==3): print("2") else: print("3")
3 Respostas
+ 1
its is my humble request dear friend to please may you tell the answer o the above queston
+ 2
There is indentation errors on your code
Try this one
if not True:
print("1")
elif not (1+1==3):
print("2")
else:
print("3")
+ 1
i tried very hard but i was not able to find it as i am a beginner in python