0
Fill in the blanks to calculate the expression x*(x+1) using an anonymous function and call it for the number 6.
a = (________x:x____(x+1))_____ print(a)
13 ответов
+ 12
hi,
a = (lambda x:x*(x+1))(6)
print(a)
+ 6
a = (lambda x:x*(x+1))(6)
print(a)
+ 2
Fill in the blanks to calculate the expression x*(x+1) using an anonymous function and call it for the number 6.
Ans: a = (lambda x:x*(x+1))(6)
+ 1
a = (
lambda
x: x
*
(x+1))
(6)
print(a)
0
a = (lambda x: x*(x+1)) (6)
print(a)
0
a = (lambda x:x*(x+1))(6)
print(a)
0
a = (lambda x:x*(x+1))(6)
print(a)
0
Fill in the blanks to calculate the expression x*(x+1) using an anonymous function and call it for the number 6.
a = (
lambda
x: x
*
(x+1))
(6)
print(a)
0
Lambda
*
(6)
0
question : Fill in the blanks to calculate the expression x*(x+1) using an anonymous function and call it for the number 6.
program : a = lambda x:x*(x+1))(6)
print(a)
0
a = (lambda x:x*(x+1))(6)
print(a)
0
1-lambda
2-*
3-(6)
0
good