Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 37 Online
OpenStudy (anonymous):

Can someone explain anonymous functions?

OpenStudy (anonymous):

I don't intend this to sound snippy, but an anonymous function is a function that has no name. Here's a normal function to multiply its parameter by two: def MulByTwo(x): return x * 2 But Python, like some other languages, lets you define such a function for use without having to create a name for it, and avoid cluttering the namespace with names that you don't really need. In such a case, you create the same function with "lambda x: x * 2". So why would you want to do that? In so-called functional programming, you often want to pass a function as a parameter to another function. This lets you do that without creating a name that will never be used explicitly.

OpenStudy (anonymous):

thanks, so in passing a function as a parameter, i'm not passing the result, but simply a function/process to manipulate data/variables in another function?

OpenStudy (anonymous):

That's the general idea. I don't use it much; for a complete explanation, see http://docs.python.org/howto/functional.html.

OpenStudy (anonymous):

Thanks

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Latest Questions
XxXEmmaXxX: HOW DO I PRAYud83dude4f
7 hours ago 9 Replies 3 Medals
Ylynnaa: I tired ud83eudd37ud83cudffbu2640ufe0f
5 hours ago 14 Replies 12 Medals
ARWolf1: Is hypnosis an altered state of consciousness?
13 hours ago 2 Replies 1 Medal
abbycaroline2766: i need help learning math pweeessee
13 hours ago 5 Replies 0 Medals
Angie2009: can anyone help me with 9th honors biology?
12 hours ago 28 Replies 2 Medals
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!