0
It shows syntax error in else:
2 Answers
+ 3
how are we supposed to tell the error without seeing the code. send the code
+ 1
Send your code!
Syntax error could be a missing ')' or ' or " or = or or '}' or '(' or '{'
if you don't post your code when asking here, we can't help you!
ââââââââââââââââââââââ
TIP:
make sure your code is indented
#### WRONG #####
print("This is wrong"
def function(:
return "This is wrong"
#### CORRECT ####
print("This is correct")
def function():
return "this is correct"