vote up 3 vote down star
1

I'd like to call a function in python using a dictionary.

Here is some pseudo-code:

d = dict(param='test')

def f(param):
    print param

f(d)

This prints {'param': 'test'} but I'd like it to just print test.

I'd like it to work similarly for more parameters:

d = dict(p1=1, p2=2)
def f2(p1,p2):
    print p1, p2
f2(d)

Is this possible?

flag

4 Answers

vote up 1 vote down

Here ya go - works just any other iterable:

d = {'param' : 'test'}

def f(dictionary):
    for key in dictionary:
        print key

f(d)
link|flag
vote up 12 vote down check

Figured it out for myself in the end. It is simple, I was just missing the ** operator to unpack the dictionary

So my example becomes:

d = dict(p1=1, p2=2)
def f2(p1,p2):
    print p1, p2
f2(**d)
link|flag
S.Lott: This is not possible. – Aaron Digulla Dec 2 '08 at 17:02
if you'd want this to help others, you should rephrase your question: the problem wasn't passing a dictionary, what you wanted was turning a dict into keyword parameters – Javier Dec 2 '08 at 17:28
1  
It's worth noting that you can also unpack lists to positional arguments: f2(*[1,2]) – Matthew Trevor Dec 2 '08 at 23:44
1  
"dereference": the usual term, in this Python context, is "unpack". :) – mipadi Jul 2 at 18:05
vote up 2 vote down

In python, this is called "unpacking", and you can find a bit about it in the tutorial. The documentation of it sucks, I agree, especially because of how fantasically useful it is.

link|flag
vote up 0 vote down

You could easily iterate through all items of a given dictionary like this;

dictionary = {0: 'zero', 1: 'one', 2 : 'two', 3 : 'three', 4 : 'four', 5: 'five'}

for counter in range (0, len(dictionary)):
          dictionary[counter]

Hope this helps.. XD

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.