membuat fungsi yang menerima nuber dari argumen python

def f(*arg):
    return arg
  
>> print(f(1, 2, 3, 4))
>> output: (1, 2, 3, 4)
TheRubberDucky