Computer Science, asked by aparajetha2725, 1 year 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