MCPcopy Create free account
hub / github.com/bslatkin/effectivepython / my_func

Function my_func

example_code/item_025_example_05.py:21–23  ·  view source on GitHub ↗
(**kwargs)

Source from the content-addressed store, hash-verified

19print("Example 5")
20# Python 3.5
21def my_func(**kwargs):
22 for key, value in kwargs.items():
23 print("%s = %s" % (key, value))
24
25my_func(goose="gosling", kangaroo="joey")

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected