McqMate
Q. |
Does Lambda contains return statements? |
A. | true |
B. | false |
Answer» B. false | |
Explanation: lambda definition does not include a return statement. it always contains an expression which is returned. also note that we can put a lambda definition anywhere a function is expected. we don’t have to assign it to a variable at all. |
View all MCQs in
Problem Solving and Python ProgrammingNo comments yet