+ 1
Please explain me this python code... I am confused..
what is output of code? if not true: print("1") elif not(1+1==3): print("2") else: print("3")
1 Resposta
+ 11
#This code otput Error.
#And this code:
if not True:
print("1")
elif not(1+1==3):
print("2")
else:
print("3")
# otput 2
# Look at https://code.sololearn.com/c2O6Z764o9Pi/#
# My code 2017/01/15 20:21
# and don't forgot like my code! :)