Is there any built-in function to stop execution of a function similar
to stop the program execution by sys.exit?
In the example below, I want to skip statement 2... if the 'if'
condition is satisfied.
Don't advice me to put statement 2 in 'else' block. That's not my
intention.
May be this a simple task. Sorry to say I'm novice in Python,
gentlemen...

def funct :
    if (.....) : statement 1
    statement 2
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to