Is it possible to run a function like this:
def call(a,*alphabets,*numbers):
print(a)
print(alphabets)
print(numbers)
I'm getting the following error:
File "<ipython-input-331-ddaef8a7e66f>", line 1
def call(a,*alphabets,*numbers):
^
SyntaxError: invalid syntax
Can somebody tell me if there's an alternative way to do this?