InterviewSolution
Saved Bookmarks
| 1. |
What are default arguments? |
|
Answer» Python allowes function arguments to have default values; if the function is called without the argument, the argument gets its default value. |
|