In message <[email protected]>, Ben Finney wrote: > Lawrence D'Oliveiro <[email protected]_zealand> writes: > >> In message <[email protected]>, cjw wrote: >> >> > Aren't lambda forms better described as function? >> >> Is this a function? >> >> lambda : None >> >> What about this? >> >> lambda : sys.stdout.write("hi there!\n") > > They are both lambda forms in Python. As a Python expression, they > evaluate to (they “return”) a function object.
So there is no distinction between functions and procedures, then? -- http://mail.python.org/mailman/listinfo/python-list
