On 02/01/13 13:02, Jack Little wrote:
I do not understand my error (it says something about an out-of-function return 
on line 179)

You cannot use "return" unless it is inside a function.

# This is okay.
def test():
    print "test"
    return "testing complete"  # indented, therefore inside the function


# this is not okay
def test():
    print "test"
return "testing complete"  # not indented, therefore not inside the function



--
Steven
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to