Answers for "make a function that accepts any nuber of arguments python"

0

make a function that accepts any nuber of arguments python

def f(*arg):
    return arg
  
>> print(f(1, 2, 3, 4))
>> output: (1, 2, 3, 4)
Posted by: Guest on January-14-2022

Code answers related to "make a function that accepts any nuber of arguments python"

Python Answers by Framework

Browse Popular Code Answers by Language