- 1
What is the result of this code?
Triple=lambda x: x*3 Add=lambda x,y: x+y print (Add (Triple (3),4) HELP: ✓ lambda is Anonymous faction ✓ you can send me your answer
3 odpowiedzi
+ 1
Hi there!
You can use Code Playground to check a snippet as long as the language is supported. If an explanation was what you seek for, then say "What is the explanation for this code?"
And kindly specify the relevant language in thread's tags 👍
0
Can someone give a solid explanation about this piece of code?
triple = lambda x: x * 3
add = lambda x, y: x + y
print(add(triple(3), 4))
I've found the answer but I'm still confused about the methodology!
0
omg!hardest of all than js