Computer Science

Which of the given argument types can be skipped from a function call ?

  1. positional arguments
  2. keyword arguments
  3. named arguments
  4. default arguments

Python Functions

1 Like

Answer

default arguments

Reason — A default argument is an argument with a default value in the function header, making it optional in the function call. The function call may or may not have a value for it.

Answered By

2 Likes


Related Questions