[Tutor] basic function concept

Byron Ruffin byron.ruffin at g.austincc.edu
Sat Nov 16 22:20:52 CET 2013


def main(x, y, z):

    print (x, y, z)

def funct():
    x = 1
    y = 2
    z = 3

    return x, y, z


main()


Can someone tell me why main is not being given any arguments?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/tutor/attachments/20131116/74dcae99/attachment-0001.html>


More information about the Tutor mailing list