0
Check this out
Why this doesn't work number1 = 2 number2 = 3 if number1 != number2 print(hecho)
1 Réponse
+ 9
Carlos Honrado you have missed an colon beside if statement.
The second error is hecho is not an defined or used variable so for print use double quotes
number1 = 2
number2 = 3
if number1 != number2:
print("hecho")