473,385 Members | 1,838 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

questions about functions inside a function

I want to create a list of function.

Here is my code:
In [9]: a = []

In [10]: for i in range(4):
....: b = lambda : i**2
....: a.append(b)
....:
....:

In [11]: for f in a:
....: f()
....:
....:
9
9
9
9

What I want is, the value of i should be bounded to the anonymous function.
And the output should like this:

for f in a:
print f()
0
1
4
9

How to achieve this?

Thanks a lot!
Jul 16 '07 #1
5 1213
"fd********@gmail.com" <fd********@gmail.comwrote:
What I want is, the value of i should be bounded to the anonymous
function. And the output should like this:

for f in a:
print f()
0
1
4
9

How to achieve this?
Use default arguments when defining your function: default arguments are
evaluated when the function is defined, bound arguments get the current
value of the variable at the point when it is referenced during the call.

Also, since you give your function a name anyway ('b') you might as well
use a named function as being clearer than using lambda:
>>a = []
for i in range(4):
def b(i=i):
return i**2
a.append(b)

>>for f in a:
f()
0
1
4
9
>>>
Jul 16 '07 #2
fd********@gmail.com a écrit :
I want to create a list of function.

Here is my code:
In [9]: a = []

In [10]: for i in range(4):
....: b = lambda : i**2
....: a.append(b)
....:
....:

In [11]: for f in a:
....: f()
....:
....:
9
9
9
9

What I want is, the value of i should be bounded to the anonymous
function. And the output should like this:

for f in a:
print f()
0
1
4
9

How to achieve this?
>>a = [lambda i=i:i**2 for i in range(4)]
for f in a:
.... print f()
....
0
1
4
9
>>>
HTH
Jul 16 '07 #3
On Jul 16, 4:49 am, "fdu.xia...@gmail.com" <fdu.xia...@gmail.com>
wrote:

(snipped)
>
What I want is, the value of i should be bounded to the anonymous function.
And the output should like this:

for f in a:
print f()
0
1
4
9

How to achieve this?

Thanks a lot!


The functools module, in Python 2.5 allows:
>>import functools
square = lambda i: i ** 2
anon = [functools.partial(square, i) for i in range(4)]
for f in anon:
.... print f()
....

--
Hope this helps,
Steven

Jul 16 '07 #4
fd********@gmail.com wrote:
What I want is, the value of i should be bounded to the anonymous
function. And the output should like this:
....
How to achieve this?
This doesn't answer your question (others have), but another (perhaps
clearer) way to do such things is something like

class MyFunc(object):
"""A function object."""
def __init__(self, val):
self.val = val

def __call__(self):
"""Return value squared"""
return self.val**2

a = []
for i in range(4):
a.append(MyFunc(i))

for f in a:
f()
Jeremy

--
Jeremy Sanders
http://www.jeremysanders.net/
Jul 16 '07 #5
Jeremy Sanders a écrit :
fd********@gmail.com wrote:

>>What I want is, the value of i should be bounded to the anonymous
function. And the output should like this:

...
>>How to achieve this?


This doesn't answer your question (others have), but another (perhaps
clearer) way to do such things is something like

class MyFunc(object):
"""A function object."""
def __init__(self, val):
self.val = val

def __call__(self):
"""Return value squared"""
return self.val**2

a = []
for i in range(4):
a.append(MyFunc(i))

for f in a:
f()
I wouldn't say it's "clearer" - at least in this concrete use case. And
it takes more than just defining the __call__ method to have a fully
function-like object (hint: try using a MyFunc instance as a method).
Jul 16 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Anthony Baxter | last post by:
To go along with the 2.4a3 release, here's an updated version of the decorator PEP. It describes the state of decorators as they are in 2.4a3. PEP: 318 Title: Decorators for Functions and...
4
by: Chuck Ritzke | last post by:
I keep asking myself this question as I write class modules. What's the best/smartest/most efficient way to send a large object back and forth to a class module? For example, say I have a data...
15
by: Pelle Beckman | last post by:
Hi all, I have a few newbie questions: In function declaration what does a 'const' mean inside the parameter list ? That it won't modify the value? void MemberFunction(const int x);
4
by: Rhino | last post by:
I've been playing with Java UDFs for the last couple of days and I've got some questions about scratchpads. I'm running DB2 LUW V8 (FP8) on WinXP. Somewhere in the manuals, I found some remarks...
15
by: copx | last post by:
Q1: If an array is declared static in file A is it still valid to access it from file B? I mean if a function form file A which returns a pointer to a position inside of the array is called from...
9
by: questions? | last post by:
if I use malloc() in a function to allocate a space for my array of structures. I didn't free() them anywhere in the program. I found that I can still use that space after I come back to...
39
by: Digital Puer | last post by:
I'm not the world's greatest C++ programmer, so I had a hard time with these. Some help would be appreciated. 1. Comment on the declaration of function Bar() below: class Foo { static int...
6
by: Venkatesh | last post by:
Hello All, I have couple of doubts regarding the concept of on-demand javascript loading using javascript code. I could see on the net different techniques for achieving this - techniques like:...
13
by: John Dann | last post by:
A Python newbie, but some basic understanding of how classes, objects etc work in eg VB.Net. However, I'm struggling a little to translate this knowledge into the Python context. I'm trying to...
6
KevinADC
by: KevinADC | last post by:
This snippet of code provides several examples of programming techniques that can be applied to most programs. using hashes to create unique results static variable recursive function...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.