what the heck happened with python
Voters
Coder100 (12437)
Hi! Try except errors have to be on the same indentation sequence.
try:
pass
except:
pass
also line 60 is unreachable btw because line 59
AJDevelopment (120)
@Coder100 i was going to checkmark your answer but it didnt work because i already selected Bookie0's answer. Sorry.
hi!
not sure, but maybe line 58
except IndexError:
should be at the same indentation level as line 55try:
, because donttry
andexcept
go together in a way? so just select lines 58 to 60 (inclusive), and presshift-tab
two times (except
should be at the same line astry
); maybe that could solve it...?