InterviewSolution
Saved Bookmarks
| 1. |
What are the advantages of keyword arguments? |
|
Answer» It is easier to use since we need not remember the order of the arguments. We can specify the values for only those parameters which we want, and others have default values. |
|