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

Function my_func

example_code/item_025.py:66–68  ·  view source on GitHub ↗
(**kwargs)

Source from the content-addressed store, hash-verified

64
65print("Example 6")
66def my_func(**kwargs):
67 for key, value in kwargs.items():
68 print(f"{key} = {value}")
69
70my_func(goose="gosling", kangaroo="joey")
71

Callers 1

item_025.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected