+ 3
Module 6 QUIZ
Fill in the blanks to calculate the expression x*(x+1) using an anonymous function and call it for the number 6. /Python/ a = (lambda x: x*(x+1)) ___ print(a)
1 Resposta
0
a=(lambda x:x*(x+1)) (6)
Fill in the blanks to calculate the expression x*(x+1) using an anonymous function and call it for the number 6. /Python/ a = (lambda x: x*(x+1)) ___ print(a)