+ 1
It seems that something is wrong but i don't know what
x = 4 if x == 5: print("false") else: print("true")
1 Réponse
+ 12
You must indent your inner conditionnal statements ( espacement is essential in Python ):
x = 4
if x == 5:
print("false")
else:
print("true")