"Ximo" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hello, I want that the return sentence don't return anything, how can I do > it?. If i do only return it returns None, and pass don't run too. > > Can anyone help me?, thanks. > XIMO >
Just don't use a return statement at all, or do something like
[function body]
if not val = None:
return val
[end of function]
--
http://mail.python.org/mailman/listinfo/python-list
