1 parent c148731 commit 8a848e2Copy full SHA for 8a848e2
1 file changed
args_and_kwargs.rst
@@ -52,7 +52,7 @@ arguments** in a function. Here is an example to get you going with it:
52
def greet_me(**kwargs):
53
if kwargs is not None:
54
for key, value in kwargs.iteritems():
55
- print "%s == %s" %(key,value)
+ print "%s == %s" %(key, value)
56
57
>>> greet_me(name="yasoob")
58
name == yasoob
0 commit comments