Created
September 14, 2011 07:41
-
-
Save adaptives/1216049 to your computer and use it in GitHub Desktop.
LPTHW - Exercise 18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # LPTHW - Exercise 18 | |
| # this one islike your scripts with argv | |
| def print_two(*args): | |
| arg1, arg2 = args | |
| print "arg1: %r, arg2: %r" % (arg1, arg2) | |
| # ok, that *args is actually pointless, we can just do this | |
| def print_two_again(arg1, arg2): | |
| print "arg1: %r, arg2: %r" % (arg1, arg2) | |
| # this just takes one argument | |
| def print_one(arg1): | |
| print "arg1: %r" % arg1 | |
| # this one takes no arguments | |
| def print_none(): | |
| print "I got nothin'." | |
| print_two("Zed", "Shaw") | |
| print_two_again("Zed", "Shaw") | |
| print_one("First!") | |
| print_none() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment