Difference between *args and **kwargs in python
In any programming language we make a function to perform certain task. Sometimes we don’t know how many arguments will come from user sites, In that case we use *args.
def function_args(*args):
for i in args:
print(i)
call function with ...
jaypratap.hashnode.dev1 min read