reviewing ex.15 to 26
This commit is contained in:
parent
402d63519d
commit
d270952bf0
6 changed files with 59 additions and 22 deletions
|
|
@ -1,22 +1,20 @@
|
|||
# this one is like your scripts with argv
|
||||
def print_two(*args):
|
||||
arg1, arg2 = args
|
||||
print(f"arg1: {arg1}, arg2: {arg2}")
|
||||
arg1, arg2 = args
|
||||
print(f"arg1: {arg1}, arg2: {arg2}")
|
||||
|
||||
# ok, that *args is actually pointless, we can just do this
|
||||
def print_two_again(arg1, arg2):
|
||||
|
||||
print(f"arg1: {arg1}, arg2: {arg2}")
|
||||
print(f"arg1: {arg1}, arg2: {arg2}")
|
||||
|
||||
# this just takes one argument
|
||||
def print_one(arg1):
|
||||
|
||||
print(f"arg1: {arg1}")
|
||||
print(f"arg1: {arg1}")
|
||||
|
||||
# this one takes no arguments
|
||||
def print_none():
|
||||
print("I got nothin'.")
|
||||
|
||||
print("I got nothin'.")
|
||||
|
||||
|
||||
print_two("Zed","Shaw")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue