1def myFun(*args,**kwargs):
2 print("args: ", args)
3 print("kwargs: ", kwargs)
4
5myFun('my','name','is Maheep',firstname="Maheep",lastname="Chaudhary")
6
7# *args - take the any number of argument as values from the user
8# **kwargs - take any number of arguments as key as keywords with
9# value associated with them