The quiz where the difficulty automagically adapts to the player's Python knowledge
This is a question page. You can use this page to bookmark a question. Start a new quiz!
Question #366
k=lambda x,y : x%y
print(k(36,32)+ k(15,10))
On line 2, k(36,32) invokes a lambda expression by passing x as 36 and y as 32 and returns 4 . Similarly, k(15,10) invokes a lambda expression by passing x as 15 and y as 10 and returns 5 . Both the return values are summed up before printing. Thus the output is (5+4): 9. (w3schools.com/python/python_lambda.asp)
What is the output of the code snippet below?
— The Python Quiz (@thepythonquiz) January 11, 2021
k=lambda x,y : x%y
print(k(36,32)+ k(15,10))
2
9
8
5
None of the above
π Comment the answer, like and retweet!
Question difficulty: π΅π΅π΅π΅π΅