How I Fix This? else if

@CloudsAndCastles It’s Verse :+1:

I think your first if (and all the following ones) are not being parsed correctly, maybe try something like this

if(
    Cond1 and
    Cond2
):
    # Do smth
else if(
    Cond3 and
    Cond4
):
    # Do smth

Otherwise try to replace ands with commas :person_shrugging: