Skip to content

Instantly share code, notes, and snippets.

@santosadrian
Created February 4, 2020 08:09
Show Gist options
  • Save santosadrian/48d33b404d28c598d9ae17d0c09ab229 to your computer and use it in GitHub Desktop.
Save santosadrian/48d33b404d28c598d9ae17d0c09ab229 to your computer and use it in GitHub Desktop.
Example 18
# this one is like your scripts with argv
def print_two(*args):
arg1, arg2 = args
print(f"arg1: {arg1}, arg2: {arg2}")
# ok, that *args is actually pointless, we can just do this shorter
def print_two_again(arg1, arg2):
print(f"arg1: {arg1}, arg2: {arg2}")
# this just takes one argument
def print_one(arg1):
print(f"arg1: {arg1}")
# this one takes no arguments
def print_none():
print("I got nothing")
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