I write a function like this in python:
def test(**argv):
for k,v in argv.items():
print k,v
and use the function like this:
test(x = 1, y=2, z=3)
The printout is this:
y 2
x 1
z 3
I was wondering why the result of printout is not?:
x 1
y 2
z 3
Any help here?