Which of the following statements about keyword arguments foruser-defined functions are true in Python?
1. They are assigned default values
2. Any keyword argument defined by a function must be includedby the program calling the function
3. They are required for user-defined functions
4. They can represent any valid Python data type
Answer
2. Any keyword argument defined by a function must be includedby the program calling the function