0
Difference between *args and **kwargs
2 Answers
+ 3
Hello srinu, *args passes variable number of non-keyworded arguments list and on which operation of the list can be performed.
while **kwargs passes variable number of keyword arguments dictionary to function on which operation of a dictionary can be performed.