if (4 = 2):
Print ("impossible stuff")
Print ("Placeholder")
else:
Print("possible stuff")
under “else” theres an error. “expected expression, got “else” in indented block” not sure what to do here.
if (4 = 2):
Print ("impossible stuff")
Print ("Placeholder")
else:
Print("possible stuff")
under “else” theres an error. “expected expression, got “else” in indented block” not sure what to do here.
Needs to be formatted like this
if (4 = 2):
Print ("impossible stuff")
Print ("Placeholder")
else:
Print("possible stuff")
You need to indent the code
if (4 = 2):
Print ("impossible stuff")
Print ("Placeholder")
else:
Print("possible stuff")
thanks.