Computer Science

Which of the following arguments works with implicit values that are used if no value is provided?

  1. keyword
  2. required
  3. variable-length
  4. default

Python Functions

2 Likes

Answer

default

Reason — Default arguments are used with implicit values that are used if no value is provided when calling the function. This is because default arguments are predefined values assigned to parameters in a function.

Answered By

1 Like


Related Questions