+ 1
Why doesn't this work
If else statements https://code.sololearn.com/cJQASBWMNRzR/?ref=app
1 Respuesta
+ 6
『𝕋𝕒𝕟𝕜 𝕕𝕖𝕞𝕡𝕤𝕖𝕪』◍
Check proper syntax.
There would be colon (:) not semicolon (;) after else
Indentation should be proper
function name starts from lower character
x = 4
if x == 5:
print ("yes")
else:
print ("no")