Computer Science, asked by aparajetha2725, 11 months ago

What is an anonymous function in Python?

Answers

Answered by Anonymous
0

functions which are created using lambda keyword.

Example:-

a = lambda x: x*2

print(a(2))

Answered by begumsaniya07
0

Answer:

lambda

Explanation:

Similar questions