Can there be python functions that take unspecified number of arguments such as
myfunc(a, b, c)
myfunc(a, b, c, d, e)
where both will work?
Can there be python functions that take unspecified number of arguments such as
myfunc(a, b, c)
myfunc(a, b, c, d, e)
where both will work?
myfunc(*args, **kw)
*args - takes N number of arguments
**kw - takes dictionary (unspecified depth)