0
Why the second if statemnet is true, the first if statemnet is also true....?
if 1 + 1 == 2: if 2 * 2 == 8: print("if") else: print("else")
1 Antwort
+ 1
you should use indentation, python is all about indentation.
if 1 + 1 == 2: if 2 * 2 == 8: print("if") else: print("else")