Tryout Task Tutorial

I don’t think you’re in the good section of the forum… Someone will certainly move it to the right place.
The error message you got is because your code is not indented correctly. Python take care of the indentation of the code!

my test=1
if myTest!= 2:
    if myTest==1:
        print 'myTest==1'

is a syntax that python will understand and compile without errors but:

my test=1
if myTest!= 2:
if myTest==1:
print 'myTest==1'

will generate the errors you got.

Your error is detected at line 381 so have look at line 380 where the indentation error might be!

Some doctors created free medecines that I used to take two or three pages before sleeping :wink:
ibiblio.org/swaroopch/byteof … on_120.pdf