15.04.2013 Views

Core Python Programming (2nd Edition)

Core Python Programming (2nd Edition)

Core Python Programming (2nd Edition)

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Chapter 11<br />

2. Functions<br />

def sumtimes(x, y):<br />

return (x+y, x*y)<br />

6. Variable-length arguments<br />

def printf(string, *args):<br />

print string % args

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!