Which of the following lambda definitions are correct? (Choose two.)
Which of the following lambda definitions are correct? (Choose two.)
To define a lambda in Python, the correct syntax is 'lambda arguments: expression'. Option A uses an incorrect syntax with '='. Option B also has incorrect syntax because 'return' is not used in lambda functions. Option C and Option D use the correct syntax of a lambda function, making both of them valid lambda definitions.
C and D are correct