Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

Here is some 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?

share|improve this question

3 Answers

up vote 79 down vote accepted

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)
share|improve this answer
S.Lott: This is not possible. – Aaron Digulla Dec 2 '08 at 17:02
6  
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
5  
It's worth noting that you can also unpack lists to positional arguments: f2(*[1,2]) – Matthew Trevor Dec 2 '08 at 23:44
4  
"dereference": the usual term, in this Python context, is "unpack". :) – mipadi Jul 2 '09 at 18:05
thanks, i love python :) – Saša Šijak Mar 16 '12 at 8:13
show 2 more comments

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.

share|improve this answer

Here ya go - works just any other iterable:

d = {'param' : 'test'}

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

f(d)
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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