Skip to content

Instantly share code, notes, and snippets.

@hassanuos
Created January 31, 2024 04:58
Show Gist options
  • Save hassanuos/d11bea6b16535642f49b090dd8bb9f3a to your computer and use it in GitHub Desktop.
Save hassanuos/d11bea6b16535642f49b090dd8bb9f3a to your computer and use it in GitHub Desktop.
def my_arg_function(*args):
for arg in args:
print(arg)
my_arg_function("Hassan", "Raza", "Dev")
#output
# Hassan
# Raza
# Dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment