InterviewSolution
Saved Bookmarks
| 1. |
What are *args and **kwargs used for? |
|
Answer» The *args function ALLOWS users to specify an ordered function for use in the command line, WHEREAS the **kwargs function is USED to express a GROUP of unordered and in-line ARGUMENTS to be passed to a function. |
|