+ 1
What's the error in line 17 & 18?
5 Antworten
+ 1
There is no closing except statement
+ 1
As all of them said there is no closing except statement. However, your trying to create multiples. No need of error handling. You can code with only a loop
+ 1
except in line 18 is not intended correctly
0
I don't know what you are trying to acheive, i didn't looked the logic, just the case.
you have a Try block at line 2, and it needs a except or finally block which you haven't provided
0
First 'try' doesn't have corresponding 'except' or 'finally' clause.