Saved Bookmarks
| 1. |
Define default arguments? |
|
Answer» Default Arguments In Python the default argument is an argument that takes a default value if no value is provided in the function call. The following example uses default arguments, that prints default salary when no argument is passed, def printinfo(sal=3500): |
|