Need to generate some functions.

S

Steven W. Orr

Given a list of names

ll = ("n1", "n2", "n3", "n4")

I want to create a pair of functions based off of each name. An example of
what I want to happen would look like this:

def mkn1dict(address):
return {'Address': address, 'Control': SOME_CONST}

def mkn1Classobj(address):
return Classobj( mkn1classobj(address) )

I know how to do this in a preprocessor, but I'd like to do it directly in
python. Can this be done?

TIA


--
Time flies like the wind. Fruit flies like a banana. Stranger things have .0.
happened but none stranger than this. Does your driver's license say Organ ..0
Donor?Black holes are where God divided by zero. Listen to me! We are all- 000
individuals! What if this weren't a hypothetical question?
steveo at syslang.net
 
J

J. Robertson

you can use the dictionary returned by the built in function vars, along
the lines of
>>> vars()["foo"] = lambda x: 3*x
>>> foo(2)
6

but polluting your name space with data counts as bad style and will
probably bite you at some point -- you probably are better of putting
closures in a dictionary:
def something():
return {'Address': address, 'Control': "SOME_CONST"}
return something
>>> mk = {}
>>> mk["n1"] = mkdict("n1")
>>> mk["n1"]()
{'Control': 'SOME_CONST', 'Address': 'n1'}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,774
Messages
2,569,596
Members
45,143
Latest member
DewittMill
Top