In Python3, When I try to read the input foo(1,?i:int) from console:
It gives syntax error! It can accept other inputs such as foo(1,2,2),foo('d',0).
def foo(*x): #Multiple Argument function
print(x)
In Python3, When I try to read the input foo(1,?i:int) from console:
It gives syntax error! It can accept other inputs such as foo(1,2,2),foo('d',0).
def foo(*x): #Multiple Argument function
print(x)